List of usage examples for java.lang RuntimeException subclass-usage
From source file net.skhome.common.domain.ResourceAlreadyExistsException.java
@ResponseStatus(value = HttpStatus.CONFLICT) @SuppressWarnings("serial") public class ResourceAlreadyExistsException extends RuntimeException { private final String resourceName;
From source file org.yroffin.neo4b.exception.NotFoundException.java
/** * technical exception */ public class NotFoundException extends RuntimeException { public NotFoundException(String message) {
From source file io.openshift.booster.exception.NotFoundException.java
@ResponseStatus(HttpStatus.NOT_FOUND) public class NotFoundException extends RuntimeException { public NotFoundException(String message) { super(message); }
From source file io.openshift.booster.exception.UnprocessableEntityException.java
@ResponseStatus(HttpStatus.UNPROCESSABLE_ENTITY) public class UnprocessableEntityException extends RuntimeException { public UnprocessableEntityException(String message) { super(message); }
From source file io.openshift.booster.exception.UnsupportedMediaTypeException.java
@ResponseStatus(HttpStatus.UNSUPPORTED_MEDIA_TYPE) public class UnsupportedMediaTypeException extends RuntimeException { public UnsupportedMediaTypeException(String message) { super(message); }
From source file it.av.eatt.JackWicketException.java
public class JackWicketException extends RuntimeException { private static final long serialVersionUID = -2549208951901428566L; private static Log log = LogFactory.getLog(JackWicketException.class); public JackWicketException() {
From source file it.av.eatt.JackWicketRunTimeException.java
public class JackWicketRunTimeException extends RuntimeException { private static final long serialVersionUID = 6702704981783539685L; private static Log log = LogFactory.getLog(JackWicketRunTimeException.class); public JackWicketRunTimeException() {
From source file com.netflix.spinnaker.fiat.controllers.UserPermissionModificationException.java
@ResponseStatus(HttpStatus.SERVICE_UNAVAILABLE) public class UserPermissionModificationException extends RuntimeException { public UserPermissionModificationException() { } public UserPermissionModificationException(String message) {
From source file org.yroffin.neo4b.exception.TechnicalException.java
/** * technical exception */ public class TechnicalException extends RuntimeException { public TechnicalException(String message) {
From source file curly.commons.web.OperationIncompletedException.java
/** * @author Joo Pedro Evangelista */ @ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR) public class OperationIncompletedException extends RuntimeException { public OperationIncompletedException() {