List of usage examples for java.lang Exception subclass-usage
From source file com.beanstream.exceptions.BeanstreamApiException.java
/**
*
* @author bowens
* @author Sanchez
*
*/
From source file org.apache.cordova.core.Gesture.java
class GestureInvalidExpection extends Exception { private static final long serialVersionUID = 1L; public GestureInvalidExpection(String message) { super(message);
From source file org.hibernate.exception.NestableException.java
/**
* The base class of all exceptions which can contain other exceptions.
* <p/>
* It is intended to ease the debugging by carrying on the information
* about the exception which was caught and provoked throwing the
* current exception. Catching and rethrowing may occur multiple
From source file com.free.exception.NestableException.java
/**
* The base class of all exceptions which can contain other exceptions.
* <p/>
* It is intended to ease the debugging by carrying on the information about the
* exception which was caught and provoked throwing the current exception.
* Catching and rethrowing may occur multiple times, and provided that all
From source file net.sf.hibernate.exception.NestableException.java
/**
* The base class of all exceptions which can contain other exceptions.
*
* It is intended to ease the debugging by carrying on the information about the
* exception which was caught and provoked throwing the current exception.
* Catching and rethrowing may occur multiple times, and provided that all
From source file com.microfocus.application.automation.tools.run.ServiceInfo.java
class ConfigurationException extends Exception { public ConfigurationException(String message) { super(message); } }
From source file com.hpe.application.automation.tools.run.ServiceInfo.java
class ConfigurationException extends Exception { public ConfigurationException(String message) { super(message); } }
From source file hu.sztaki.lpds.pgportal.portlets.asm.ClientError.java
class ClientError extends Exception { } interface UserInput { public void validate() throws ClientError;
From source file Lazy.java
class LazyInitializationException extends Exception { public LazyInitializationException(final String message, final Throwable cause) { super(message, cause); } public LazyInitializationException(final Throwable cause) {
From source file gov.nasa.arc.geocam.talk.service.ISiteAuth.java
class AuthorizationFailedException extends Exception { private static final long serialVersionUID = 1L; }