/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/cts/exceptions/ |
H A D | LdapInitializationFailedException.java | 20 public LdapInitializationFailedException(Throwable cause) { argument 21 super(cause.getMessage(), cause);
|
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/cts/exceptions/ |
H A D | LdapInitializationFailedException.java | 20 public LdapInitializationFailedException(Throwable cause) { argument 21 super(cause.getMessage(), cause);
|
/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/mechanisms/ |
H A D | DuplicateMechanismException.java | 24 private Mechanism cause; field in class:DuplicateMechanismException 28 * @param detailMessage The message cause of the exception. 29 * @param throwable The throwable cause of the exception. 31 public DuplicateMechanismException(String detailMessage, Mechanism cause, Throwable throwable) { argument 33 this.cause = cause; 38 * @param detailMessage The message cause of the exception. 40 public DuplicateMechanismException(String detailMessage, Mechanism cause) { argument 42 this.cause = cause; [all...] |
/forgerock/opendj-b2.6/src/server/org/opends/server/tools/tasks/ |
H A D | TaskClientException.java | 50 * @param cause of this exception 52 public TaskClientException(OpenDsException cause) { argument 53 super(cause); 68 * @param cause of this exception 70 public TaskClientException(Throwable cause) { argument 71 super(cause); 78 * @param cause of this exception 80 public TaskClientException(Message message, Throwable cause) { argument 81 super(message, cause);
|
/forgerock/opendj2/src/server/org/opends/server/tools/tasks/ |
H A D | TaskClientException.java | 49 * @param cause of this exception 51 public TaskClientException(OpenDsException cause) { argument 52 super(cause); 67 * @param cause of this exception 69 public TaskClientException(Throwable cause) { argument 70 super(cause); 77 * @param cause of this exception 79 public TaskClientException(Message message, Throwable cause) { argument 80 super(message, cause);
|
/forgerock/opendj2.6.2/src/server/org/opends/server/tools/tasks/ |
H A D | TaskClientException.java | 50 * @param cause of this exception 52 public TaskClientException(OpenDsException cause) { argument 53 super(cause); 68 * @param cause of this exception 70 public TaskClientException(Throwable cause) { argument 71 super(cause); 78 * @param cause of this exception 80 public TaskClientException(Message message, Throwable cause) { argument 81 super(message, cause);
|
/forgerock/opendj2-jel-hg/src/server/org/opends/server/tools/tasks/ |
H A D | TaskClientException.java | 50 * @param cause of this exception 52 public TaskClientException(OpenDsException cause) { argument 53 super(cause); 68 * @param cause of this exception 70 public TaskClientException(Throwable cause) { argument 71 super(cause); 78 * @param cause of this exception 80 public TaskClientException(Message message, Throwable cause) { argument 81 super(message, cause);
|
/forgerock/opendj2-hg/src/server/org/opends/server/tools/tasks/ |
H A D | TaskClientException.java | 49 * @param cause of this exception 51 public TaskClientException(OpenDsException cause) { argument 52 super(cause); 67 * @param cause of this exception 69 public TaskClientException(Throwable cause) { argument 70 super(cause); 77 * @param cause of this exception 79 public TaskClientException(Message message, Throwable cause) { argument 80 super(message, cause);
|
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/tools/tasks/ |
H A D | TaskClientException.java | 50 * @param cause of this exception 52 public TaskClientException(OpenDsException cause) { argument 53 super(cause); 68 * @param cause of this exception 70 public TaskClientException(Throwable cause) { argument 71 super(cause); 78 * @param cause of this exception 80 public TaskClientException(LocalizableMessage message, Throwable cause) { argument 81 super(message, cause);
|
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/sm/config/ |
H A D | ConfigRetrievalException.java | 30 * @param cause 31 * exception cause 33 public ConfigRetrievalException(String message, Throwable cause) { argument 34 super(message, cause);
|
/forgerock/openam-v13/openam-selfservice/src/main/java/org/forgerock/openam/selfservice/ |
H A D | HttpClientCreationException.java | 31 * @param cause 32 * umderlying cause 34 public HttpClientCreationException(String message, Throwable cause) { argument 35 super(message, cause);
|
/forgerock/openam/openam-selfservice/src/main/java/org/forgerock/openam/selfservice/ |
H A D | HttpClientCreationException.java | 31 * @param cause 32 * umderlying cause 34 public HttpClientCreationException(String message, Throwable cause) { argument 35 super(message, cause);
|
/forgerock/openam/openam-shared/src/main/java/org/forgerock/openam/blacklist/ |
H A D | BlacklistException.java | 36 * @param cause The cause. 38 public BlacklistException(Throwable cause) { argument 39 super(cause);
|
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/sm/config/ |
H A D | ConfigRetrievalException.java | 30 * @param cause 31 * exception cause 33 public ConfigRetrievalException(String message, Throwable cause) { argument 34 super(message, cause);
|
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/spi/ |
H A D | ReadOnlyStorageException.java | 42 * Constructor with a message and a cause. 46 * @param cause 47 * the cause of the exception 49 public ReadOnlyStorageException(String message, Throwable cause) argument 51 super(message, cause); 66 * Constructor with a cause. 68 * @param cause 69 * the cause of the exception 71 public ReadOnlyStorageException(Throwable cause) argument 73 super(cause); [all...] |
H A D | StorageInUseException.java | 36 * Constructor with a message and a cause. 40 * @param cause 41 * the cause of the exception 43 public StorageInUseException(String message, Throwable cause) argument 45 super(message, cause); 60 * Constructor with a cause. 62 * @param cause 63 * the cause of the exception 65 public StorageInUseException(Throwable cause) argument 67 super(cause); [all...] |
H A D | StorageRuntimeException.java | 47 * Constructor with a message and a cause. 51 * @param cause 52 * the cause of the exception 54 public StorageRuntimeException(final String message, final Throwable cause) argument 56 super(message, cause); 60 * Constructor with a cause. 62 * @param cause 63 * the cause of the exception 65 public StorageRuntimeException(final Throwable cause) argument 67 super(cause); [all...] |
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/profile/ |
H A D | UnableToRedirectException.java | 26 * @param cause the exception that caused this exception 28 public UnableToRedirectException(Throwable cause) { argument 29 super(cause); 40 * @param message a message describing the cause of the exception 48 * @param message a message describing the cause of the exception 49 * @param cause the exception that caused this exception 51 public UnableToRedirectException(String message, Throwable cause) { argument 52 super(message, cause);
|
/forgerock/openam-v13/openam-shared/src/main/java/com/iplanet/dpro/session/exceptions/ |
H A D | EntryAlreadyExistsException.java | 46 * Constructs a new exception with the specified cause. 48 public EntryAlreadyExistsException(Throwable cause) { argument 49 super(cause); 53 * Constructs a new exception with the specified detail message and cause. 55 public EntryAlreadyExistsException(String message, Throwable cause) { argument 56 super(message, cause);
|
H A D | NotFoundException.java | 50 * Constructs a new exception with the specified cause. 52 public NotFoundException(Throwable cause) { argument 53 super(cause); 57 * Constructs a new exception with the specified detail message and cause. 59 public NotFoundException(String message, Throwable cause) { argument 60 super(message, cause);
|
H A D | StoreException.java | 50 * Constructs a new exception with the specified cause. 52 public StoreException(Throwable cause) { argument 53 super(cause); 57 * Constructs a new exception with the specified detail message and cause. 59 public StoreException(String message, Throwable cause) { argument 60 super(message, cause);
|
/forgerock/openam-v13/openam-authentication/openam-auth-oauth2/src/main/java/org/forgerock/openam/authentication/modules/oauth2/ |
H A D | NoEmailSentException.java | 43 public NoEmailSentException(String message, Throwable cause) { argument 44 super(message, cause); 47 public NoEmailSentException(Throwable cause) { argument 48 super(cause);
|
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/record/ |
H A D | RecordException.java | 42 * @param cause 44 public RecordException(String message, Throwable cause) { argument 45 super(message, cause); 51 * @param cause 53 public RecordException(Throwable cause) { argument 54 super(cause);
|
/forgerock/openidm-v4/openidm-quartz-fragment/src/main/java/org/forgerock/openidm/quartz/impl/ |
H A D | ExecutionException.java | 50 * Constructs a new exception with the specified cause. 52 public ExecutionException(Throwable cause) { argument 53 super(cause); 57 * Constructs a new exception with the specified detail message and cause. 59 public ExecutionException(String message, Throwable cause) { argument 60 super(message, cause);
|
/forgerock/openidm-v4/openidm-repo-orientdb/src/main/java/org/forgerock/openidm/repo/orientdb/impl/query/ |
H A D | PrepareNotSupported.java | 50 * Constructs a new exception with the specified cause. 52 public PrepareNotSupported(Throwable cause) { argument 53 super(cause); 57 * Constructs a new exception with the specified detail message and cause. 59 public PrepareNotSupported(String message, Throwable cause) { argument 60 super(message, cause);
|