Example usage for java.lang Exception subclass-usage

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

Introduction

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

Usage

From source file com.vuze.android.remote.rpc.RPCException.java

public class RPCException extends Exception {
    private static final long serialVersionUID = -7786951414807258786L;
    private HttpResponse httpResponse;

    public RPCException(HttpResponse response, String string) {
        super(string);

From source file org.messic.server.facade.controllers.rest.exceptions.CaptchaNotValidMessicRESTException.java

@ResponseStatus(value = HttpStatus.UNPROCESSABLE_ENTITY)
public class CaptchaNotValidMessicRESTException extends Exception {
    /**
      * 
      */
    private static final long serialVersionUID = -7515571689995264830L;

From source file org.messic.server.facade.controllers.rest.exceptions.DuplicatedMessicRESTException.java

@ResponseStatus(value = HttpStatus.IM_USED)
public class DuplicatedMessicRESTException extends Exception {
    /**
      * 
      */
    private static final long serialVersionUID = 6057874385295118005L;

From source file org.messic.server.facade.controllers.rest.exceptions.MusicTagsMessicRESTException.java

@ResponseStatus(value = HttpStatus.UNPROCESSABLE_ENTITY)
public class MusicTagsMessicRESTException extends Exception {
    public static final String VALUE = "422";
    /**
     * 
     */

From source file org.messic.server.facade.controllers.rest.exceptions.NotFoundMessicRESTException.java

@ResponseStatus(value = HttpStatus.NOT_FOUND)
public class NotFoundMessicRESTException extends Exception {
    public static final String VALUE = "404";
    /**
     * 
     */

From source file org.messic.server.facade.controllers.rest.exceptions.NotValidUserNameMessicRESTException.java

@ResponseStatus(value = HttpStatus.CONFLICT)
public class NotValidUserNameMessicRESTException extends Exception {
    /**
      * 
      */
    private static final long serialVersionUID = 6057874385295118005L;

From source file org.messic.server.facade.controllers.rest.exceptions.IOMessicRESTException.java

@ResponseStatus(value = HttpStatus.CONFLICT)
public class IOMessicRESTException extends Exception {
    public static final String VALUE = "409";

    /**
     * 

From source file org.messic.server.facade.controllers.rest.exceptions.NotAuthorizedMessicRESTException.java

@ResponseStatus(value = HttpStatus.FORBIDDEN)
public class NotAuthorizedMessicRESTException extends Exception {
    public static final String VALUE = "403";

    /**
     * 

From source file org.messic.server.facade.controllers.rest.exceptions.UnknownMessicRESTException.java

@ResponseStatus(value = HttpStatus.INTERNAL_SERVER_ERROR)
public class UnknownMessicRESTException extends Exception {
    public static final String VALUE = "500";

    /**
     * 

From source file mousio.etcd4j.responses.EtcdException.java

/**
 * Exception on etcd failures
 */
@JsonIgnoreProperties(ignoreUnknown = true)
public class EtcdException extends Exception {
    private static final long serialVersionUID = -3921194095313052325L;