List of usage examples for java.lang Exception subclass-usage
From source file org.dspace.services.api.security.authorization.AuthorizationException.java
/** * * @author Joo Melo <jmelo@lyncode.com> */ public class AuthorizationException extends Exception { private static final long serialVersionUID = -6001782807840859656L;
From source file org.collectionspace.csp.api.ui.UIException.java
/** Storage method through an exception. Exceptions are a mess and need to be tidied. */ public class UIException extends Exception { private static final long serialVersionUID = 7415760251413302328L; Integer status; String url;
From source file org.emfjson.jackson.errors.JSONException.java
public class JSONException extends Exception implements Resource.Diagnostic { private final String location; private final int line; private final int column;
From source file org.zend.sdkcli.ParseError.java
public class ParseError extends Exception { private Exception e; public ParseError(ParseException e) { this.e = e;
From source file gov.nih.nci.caarray.application.project.InconsistentProjectStateException.java
/** * Indicates that an attempt was made to save a project whose state is not internally consistent. * @author dkokotov */ @ApplicationException(rollback = true) public class InconsistentProjectStateException extends Exception {
From source file org.dspace.springui.services.api.security.authorization.AuthorizationException.java
/** * * @author Joo Melo <jmelo@lyncode.com> */ public class AuthorizationException extends Exception { private static final long serialVersionUID = -6001782807840859656L;
From source file gov.nih.nci.integration.exception.IntegrationException.java
/** * * @author chandrasekaravr * */ public class IntegrationException extends Exception {
From source file com.elasticbox.jenkins.k8s.repositories.error.RepositoryException.java
public class RepositoryException extends Exception { public RepositoryException(String message, Throwable cause) { super(message, cause); } public RepositoryException(String message) {
From source file org.jboss.dashboard.factory.LookupException.java
/** * Raised by the Factory when a lookup problem occurs within a lookup call. */ public class LookupException extends Exception { private static transient org.apache.commons.logging.Log log = org.apache.commons.logging.LogFactory .getLog(LookupException.class.getName());
From source file com.startechup.tools.ModelParserException.java
/** * Thrown to indicate that the parse has problem on parsing objects * e.g. casting org.json.JSONArray into int[] */ public class ModelParserException extends Exception { public ModelParserException() {