Example usage for java.lang RuntimeException subclass-usage

List of usage examples for java.lang RuntimeException subclass-usage

Introduction

In this page you can find the example usage for java.lang RuntimeException subclass-usage.

Usage

From source file org.dawnsci.marketplace.controllers.ResourceNotFoundException.java

/**
 * @author Torkild U. Resheim, Itema AS
 * @since 1.0
 */
@ResponseStatus(value = HttpStatus.NOT_FOUND)
public class ResourceNotFoundException extends RuntimeException {

From source file org.dawnsci.marketplace.InternalErrorException.java

@ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
public class InternalErrorException extends RuntimeException {

    private static final long serialVersionUID = -5052139262842351715L;

    public InternalErrorException(String message) {

From source file rbac.configuration.EmaiAlreadyInUseException.java

@ResponseStatus(HttpStatus.PRECONDITION_FAILED)
public class EmaiAlreadyInUseException extends RuntimeException {

}

From source file com.gs.obevo.util.vfs.VFSFileSystemException.java

public class VFSFileSystemException extends RuntimeException {
    public VFSFileSystemException(FileSystemException exception) {
        super(exception);
    }

    public VFSFileSystemException(String message, Throwable cause) {

From source file com.arvato.thoroughly.exception.TmallAppException.java

public class TmallAppException extends RuntimeException {

    private static final long serialVersionUID = -5325392504946334907L;

    protected static TmallAppResponse tmallAppResponse;

From source file com.github.pires.example.rest.EmailAlreadyInUseException.java

@ResponseStatus(HttpStatus.PRECONDITION_FAILED)
public class EmailAlreadyInUseException extends RuntimeException {

}

From source file io.wangsu.ExitException.java

public class ExitException extends RuntimeException implements ExitCodeGenerator {

    @Override
    public int getExitCode() {
        return 10;
    }

From source file org.trustedanalytics.uploader.rest.FeignResponseException.java

public class FeignResponseException extends RuntimeException {

    private final HttpStatus statusCode;

    public FeignResponseException(int statusCode, String message) {
        super(message);

From source file org.uiautomation.ios.wkrdp.RemoteExceptionException.java

/**
 * when something goes wrong with the WKRDP. Typically a remote JS error or an access to a non
 * existing node.
 */
public class RemoteExceptionException extends RuntimeException {

From source file com.bxtel.security5.auth.exceiption.AccessDeniedException.java

/**
 * Thrown if an {@link org.springframework.security.core.Authentication Authentication} object does not hold a
 * required authority.
 *
 * @author Ben Alex
 */