List of usage examples for java.lang RuntimeException subclass-usage
From source file io.curly.commons.config.feign.ex.UnauthorizedException.java
/** * @author Joao Pedro Evangelista */ @SuppressWarnings("unused") @ResponseStatus(HttpStatus.UNAUTHORIZED) public class UnauthorizedException extends RuntimeException {
From source file org.springsource.restbucks.training.order.web.OrderAlreadyPaidException.java
/**
* Exception being thrown in case an {@link Order} has already been paid and a payment is reattempted.
*
* @author Oliver Gierke
*/
@ResponseStatus(HttpStatus.METHOD_NOT_ALLOWED)
From source file com.sworddance.util.ApplicationGeneralException.java
/** * @author patmoore * */ public class ApplicationGeneralException extends RuntimeException {
From source file io.curly.commons.config.feign.ex.InternalServerErrorException.java
/** * @author Joao Pedro Evangelista */ @SuppressWarnings("unused") @ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR) public class InternalServerErrorException extends RuntimeException {
From source file io.curly.commons.config.feign.ex.ResourceNotFoundException.java
/** * @author Joao Pedro Evangelista */ @SuppressWarnings("unused") @ResponseStatus(HttpStatus.NOT_FOUND) public class ResourceNotFoundException extends RuntimeException {
From source file com.thruzero.common.core.locator.InitializationException.java
/**
* An Exception that can be thrown by any implementation of Initializable. It retrieves the INITIALIZATION_SOURCE from
* the StringMap used during initialization.
*
* @author George Norman
*/
From source file uk.co.caprica.bootlace.controller.ResourceNotFoundException.java
/**
* Exception thrown when a requested resource could not be found.
* <p>
* Any un-handled thrown ResourceNotFoundException will automatically be converted to a standard
* "HTTP 404 Not Found" error response.
*/
From source file ar.com.zauber.commons.moderation.exceptions.IllegalModerationStateTransitionException.java
/**
* Indica que se ha intentado realizar una transicin no permitida entre dos
* {@link ModerationState}
*
* @author Pablo Grigolatto
* @since Oct 5, 2009
From source file us.mn.state.health.lims.common.exception.LIMSRuntimeException.java
/**
*
* Base exception used by the LIMS. Unless special handling can be done with an
* exception, errors should throw this exception. In the UI portion of the
* application, this base exception can be caught and an error page displayed.
*
From source file com.thoughtworks.go.util.ProcessFailedException.java
public class ProcessFailedException extends RuntimeException { private final String sysout; private final String syserr; public String getSysout() { return sysout;