List of usage examples for java.lang Exception subclass-usage
From source file edu.eci.cosw.restcontrollers.OperationFailedException.java
/** * * @author hcadavid */ @ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR) public class OperationFailedException extends Exception {
From source file edu.eci.cosw.restcontrollers.ResourceNotFoundException.java
/** * * @author hcadavid */ @ResponseStatus(HttpStatus.NOT_FOUND) public class ResourceNotFoundException extends Exception {
From source file be.ucll.udas.rest.exception.HTTPWrapperException.java
/** * @author wimcreuwels */ @ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR) public class HTTPWrapperException extends Exception {
From source file com.agroservices.restcontrollers.OperationFailedException.java
/** * * @author hcadavid */ @ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR) public class OperationFailedException extends Exception {
From source file by.creepid.docsreporter.context.validation.ReportProcessingException.java
/** * * @author rusakovich */ public class ReportProcessingException extends Exception {
From source file com.stock.controllers.exceptions.ResourceNotFoundException.java
/** * Exception to be thrown in case the resource cannot be found. * @author madhava */ @ResponseStatus(value = HttpStatus.NOT_FOUND) public class ResourceNotFoundException extends Exception {
From source file com.cosw.productsmaster.restcontrollers.OperationFailedException.java
/** * * @author hcadavid */ @ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR) public class OperationFailedException extends Exception {
From source file com.cosw.productsmaster.restcontrollers.ResourceNotFoundException.java
/** * * @author hcadavid */ @ResponseStatus(HttpStatus.NOT_FOUND) public class ResourceNotFoundException extends Exception {
From source file org.mule.module.kindling.exception.KindlingConnectorUnauthorizedException.java
public class KindlingConnectorUnauthorizedException extends Exception { private static final long serialVersionUID = 1L; private String username; private String token;
From source file uk.co.techsols.mentis.rest.ResourceNotFoundException.java
/** * * @author james.bench */ @ResponseStatus(value = HttpStatus.NOT_FOUND) public class ResourceNotFoundException extends Exception {