List of usage examples for java.lang Exception subclass-usage
From source file org.soaplab.share.SoaplabException.java
/**
* A general exception which can be used as a wrapper around other
* exceptions. <p>
*
* @author <A HREF="mailto:martin.senger@gmail.com">Martin Senger</A>
* @version $Id: SoaplabException.java,v 1.8 2009/06/26 13:49:29 mahmutuludag Exp $
From source file com.sixt.service.framework.jetty.RpcReadException.java
public class RpcReadException extends Exception { private ServletInputStream in; private byte[] incomplete; public RpcReadException(byte[] incomplete, ServletInputStream in, String message) { super(message);
From source file se.kth.csc.controller.BadRequestException.java
@ResponseStatus(HttpStatus.BAD_REQUEST) public class BadRequestException extends Exception { public BadRequestException() { } public BadRequestException(String message) {
From source file se.kth.csc.controller.ForbiddenException.java
@ResponseStatus(HttpStatus.FORBIDDEN) public class ForbiddenException extends Exception { public ForbiddenException() { } public ForbiddenException(String message) {
From source file se.kth.csc.controller.NotFoundException.java
@ResponseStatus(HttpStatus.NOT_FOUND) public class NotFoundException extends Exception { public NotFoundException() { } public NotFoundException(String message) {
From source file com.github.pjungermann.config.validation.ConfigValidationException.java
/**
* Thrown if any requirement from the {@link ConfigSpecification} was violated.
*
* The exception message will contain a pretty formatted list of {@link ConfigError} messages.
*
* @author Patrick Jungermann
From source file org.mitre.openid.connect.exception.ValidationException.java
/**
* Thrown by utility methods when a client fails to validate. Contains information
* to be returned.
* @author jricher
*
*/
From source file imgb64.DecoderException.java
/**
* Thrown when there is a failure condition during the decoding process. This exception is thrown when a {@link Decoder}
* encounters a decoding specific exception such as invalid data, or characters outside of the expected range.
*
* @version $Id: DecoderException.java 1619948 2014-08-22 22:53:55Z ggregory $
*/
From source file net.rcarz.jiraclient.RestException.java
/** * An exception for JIRA REST errors. */ public class RestException extends Exception { private int status;
From source file org.wso2.carbon.caching.CachingComponentException.java
/** * Exception class that represents exceptions related to caching component. */ public class CachingComponentException extends Exception { /**