List of usage examples for java.lang Exception subclass-usage
From source file com.pkrete.locationservice.admin.exception.ValidationException.java
/**
* This class extends the Exception class and it represents an exception that
* occurs when validation fails.
*
* @author Petteri Kivimki
*/
From source file com.etalio.android.client.exception.EtalioHttpException.java
/** * Class to wrap HTTP errors. */ public class EtalioHttpException extends Exception { private final static String TAG = EtalioHttpException.class.getCanonicalName();
From source file synapticloop.b2.exception.B2ApiException.java
public class B2ApiException extends Exception { private static final long serialVersionUID = -7345341271403812967L; private String code; private String message; private int status;
From source file eu.freme.eservices.pipelines.core.ServiceException.java
/** * @author Gerald Haesendonck */ public class ServiceException extends Exception { final HttpStatus status; final PipelineResponse response;
From source file us.polygon4.izzymongo.controller.ControllerException.java
/**
* Global controller exception handler
* See
* <a href="http://www.asyncdev.net/2011/12/spring-restful-controllers-and-error-handling/">Spring: RESTful controllers and error handling</a>
*
*/
From source file com.syncedsynapse.kore2.jsonrpc.ApiException.java
/** * Exception class for errors on JSON API. * Some communication exceptions are catched and casted to this type. * Response error from the JSON API are also returned as an instance of this exception. */ public class ApiException extends Exception {
From source file com.basho.riak.client.plain.RiakResponseException.java
/** * A checked decorator for {@link RiakResponseRuntimeException} */ public class RiakResponseException extends Exception implements HttpResponse { private static final long serialVersionUID = 5932513075276473483L;
From source file com.echopf.ECHOException.java
/** * An ECHOException represents exceptions or errors occurred in the SDK. */ public class ECHOException extends Exception { private static final long serialVersionUID = 1L;
From source file us.askplatyp.kb.lucene.model.ApiException.java
/** * @author Thomas Pellissier Tanon */ @JsonSerialize(as = ApiError.class) public class ApiException extends Exception implements ApiError {
From source file ddf.catalog.validation.ValidationException.java
/**
* Thrown to indicate that a validation operation could not be completed. Provides information in
* the form of a summary message, a list of error messages, and a list of warnings.
*
* @author Michael Menousek
* @author Shaun Morris