List of usage examples for java.lang Exception subclass-usage
From source file org.zaproxy.zap.extension.websocket.client.RequestOutOfScopeException.java
public class RequestOutOfScopeException extends Exception { private static final long serialVersionUID = 7078111064046230261L; private final URI invalidRedirection;
From source file dk.dma.ais.sentence.SentenceException.java
/** * Exception class for exceptions related to sentences */ public class SentenceException extends Exception { private static final long serialVersionUID = 1L;
From source file com.thoughtworks.go.config.exceptions.NoSuchAgentException.java
public class NoSuchAgentException extends Exception { public NoSuchAgentException(List<String> unknownAgents) { super(String.format("Agents [%s] could not be found", StringUtils.join(unknownAgents, ", "))); } }
From source file eu.dasish.annotation.backend.PrincipalExists.java
/** * * @author olhsha */ public class PrincipalExists extends Exception {
From source file net.cyphoria.cylus.web.controller.ResourceNotFoundException.java
/** * @author Stefan Pennndorf <stefan@cyphoria.net> */ @ResponseStatus(NOT_FOUND) public class ResourceNotFoundException extends Exception {
From source file org.cloudfoundry.client.lib.CloudFoundryException.java
@SuppressWarnings("serial") public class CloudFoundryException extends Exception { private String description; private int cloudFoundryErrorCode = -1;
From source file com.nebhale.devoxx2013.service.IllegalTransitionException.java
@ResponseStatus(HttpStatus.CONFLICT) public final class IllegalTransitionException extends Exception { private static final long serialVersionUID = -7234293084303395854L; private static final String DOOR_TRANSITION_FROM_TO_MESSAGE_FORMAT = "It is illegal to transition door %d in game %d from %s to %s";
From source file nu.nethome.home.items.hue.HueProcessingException.java
/** * */ public class HueProcessingException extends Exception { int errorCode = 0;
From source file org.sc.probro.exceptions.BrokerException.java
public class BrokerException extends Exception { public static Map<Integer, String> ERROR_NAMES; static { ERROR_NAMES = new TreeMap<Integer, String>();
From source file org.craftercms.commons.i10n.AbstractI10nException.java
/** * Root exception for any {@link java.lang.Exception} that wants to be localized. * * @author avasquez */ public abstract class AbstractI10nException extends Exception {