List of usage examples for java.lang RuntimeException subclass-usage
From source file org.onehippo.repository.scxml.SCXMLExecutionError.java
/** * SCXMLExecutionError capturing an error reported to {@link ErrorReporter} during SCXML execution. */ public class SCXMLExecutionError extends RuntimeException implements Serializable { private static final long serialVersionUID = 1L;
From source file org.cloudfoundry.identity.uaa.codestore.CodeStoreException.java
public class CodeStoreException extends RuntimeException { private final HttpStatus status; public CodeStoreException(String message, Throwable cause, HttpStatus status) { super(message, cause);
From source file com.vmware.identity.sts.ws.WSFaultException.java
/** * This class indicates a condition that should be propagated to the client * using a web service fault */ public class WSFaultException extends RuntimeException {
From source file com.github.mrgoro.interactivedata.spring.web.ResourceNotFoundException.java
/**
* Indicates that resource was not found.
*
* @author Philipp Schürmann
*/
@ResponseStatus(HttpStatus.NOT_FOUND)
From source file org.robertburrelldonkin.template4couchdb.rest.UnsupportedHttpResponseStatusException.java
public class UnsupportedHttpResponseStatusException extends RuntimeException { private static final long serialVersionUID = -753235933346384114L; private static final String MESSAGE_TEMPLATE = "CouchDB returned an unsupported HTTP status code {0} [{1}]";
From source file org.easyj.rest.exceptions.ResourceNotFoundException.java
/**
* Exception to be binded to the response with
* {@code HttpServletResponse} Not Found status code (404)
*
* @author Rafael Raposo
* @since 1.1.0
From source file com.hs.mail.imap.parser.ParseException.java
/**
* This exception is thrown when errors are encountered while parsing the IMAP
* command.
*
* @author Won Chul Doh
* @since Jan 12, 2010
From source file de.rahn.finances.services.SecurityNotFoundException.java
/**
* Diese Exception wird geworfen, wenn ein Wertpapier nicht gefunden wird.
*
* @author Frank W. Rahn
*/
@ResponseStatus(value = NOT_FOUND)
From source file org.easyj.rest.exceptions.ModelAndViewException.java
/**
* Base exception to carry a {@code ModelAndView} from an error
*
* @author Rafael Raposo
* @since 1.1.0
*/
From source file org.springsource.restbucks.training.payment.PaymentException.java
/** * @author Oliver Gierke */ @Getter public class PaymentException extends RuntimeException {