List of usage examples for java.lang Exception subclass-usage
From source file org.apache.cassandra.thrift.AuthorizationException.java
/** * invalid authorization request (user does not have access to keyspace) */ public class AuthorizationException extends Exception implements org.apache.thrift.TBase<AuthorizationException, AuthorizationException._Fields>, java.io.Serializable, Cloneable {
From source file org.apache.cassandra.thrift.InvalidRequestException.java
/** * Invalid request could mean keyspace or column family does not exist, required parameters are missing, or a parameter is malformed. * why contains an associated error message. */ public class InvalidRequestException extends Exception implements org.apache.thrift.TBase<InvalidRequestException, InvalidRequestException._Fields>,
From source file backtype.storm.generated.AuthorizationException.java
public class AuthorizationException extends Exception implements org.apache.thrift.TBase<AuthorizationException, AuthorizationException._Fields>, java.io.Serializable, Cloneable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct( "AuthorizationException");
From source file it.govpay.core.exceptions.GovPayException.java
public class GovPayException extends Exception { private static final long serialVersionUID = 1L; private String[] params; private EsitoOperazione codEsito; private String causa;
From source file com.kth.baasio.exception.BaasioException.java
/** * Simple wrapper for client exceptions * * @author tnine */ public class BaasioException extends Exception {
From source file com.zimbra.common.service.ServiceException.java
@SuppressWarnings("serial") public class ServiceException extends Exception { public static final String FAILURE = "service.FAILURE"; public static final String INVALID_REQUEST = "service.INVALID_REQUEST"; public static final String UNKNOWN_DOCUMENT = "service.UNKNOWN_DOCUMENT";
From source file be.dnsbelgium.rdap.core.RDAPError.java
@JsonAutoDetect(getterVisibility = JsonAutoDetect.Visibility.NONE) public class RDAPError extends Exception { private static final long serialVersionUID = 3000647771812593816L; private final int errorCode;
From source file net.openid.appauth.AuthorizationException.java
/**
* Returned as a response to OAuth2 requests if they fail. Specifically:
*
* - The {@link net.openid.appauth.AuthorizationService.TokenResponseCallback response} to
* {@link AuthorizationService#performTokenRequest(net.openid.appauth.TokenRequest,
* AuthorizationService.TokenResponseCallback) token requests},
From source file com.flexive.shared.exceptions.FxApplicationException.java
/**
* Base class for all [fleXive] Exceptions, supports localized messages and converting.
* Refer to the property files in package com.flexive.shared.exception.messages for keys to use.
* All property files in this package will be concatenated to one big FxExceptionMessages.properties file
* upon deployment.
* If a (not null) Logger is passed as the first argument the message will be logged at level "error" in the default
From source file org.kalypso.ogc.core.exceptions.OWSException.java
/** * This exception can generate an OWS error xml. * * @author Toni DiNardo */ public class OWSException extends Exception {