/forgerock/openam-v13/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/indextree/ |
H A D | ChangeMonitorException.java | 25 public ChangeMonitorException(String message, Throwable throwable) { argument 26 super(message, throwable);
|
/forgerock/openam/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/indextree/ |
H A D | ChangeMonitorException.java | 25 public ChangeMonitorException(String message, Throwable throwable) { argument 26 super(message, throwable);
|
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/monitoring/cts/ |
H A D | InvalidSNMPQueryException.java | 28 public InvalidSNMPQueryException(String message, Throwable throwable) { argument 29 super(message, throwable); 32 public InvalidSNMPQueryException(Throwable throwable) { argument 33 super(throwable);
|
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/monitoring/cts/ |
H A D | InvalidSNMPQueryException.java | 28 public InvalidSNMPQueryException(String message, Throwable throwable) { argument 29 super(message, throwable); 32 public InvalidSNMPQueryException(Throwable throwable) { argument 33 super(throwable);
|
/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/mechanisms/ |
H A D | MechanismCreationException.java | 25 * @param throwable The throwable cause of the exception. 27 public MechanismCreationException(String detailMessage, Throwable throwable) { argument 28 super(detailMessage, throwable);
|
H A D | URIMappingException.java | 23 public URIMappingException(String detailMessage, Throwable throwable) { argument 24 super(detailMessage, throwable);
|
H A D | DuplicateMechanismException.java | 29 * @param throwable The throwable cause of the exception. 31 public DuplicateMechanismException(String detailMessage, Mechanism cause, Throwable throwable) { argument 32 super(detailMessage, throwable);
|
/forgerock/openam/openam-push-notification/src/main/java/org/forgerock/openam/services/push/ |
H A D | PushNotificationException.java | 36 * @param throwable cause of the throwable circumstances. 38 public PushNotificationException(String message, Throwable throwable) { argument 39 super(message, throwable);
|
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/utils/ |
H A D | CodeException.java | 33 * Generate a new CodeException with the provided message and underlying throwable. 36 * @param throwable Cause of the error. 38 public CodeException(String msg, Throwable throwable) { argument 39 super(msg, throwable);
|
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/exceptions/ |
H A D | RestAuthException.java | 47 * @param throwable The cause of the exception. 49 public RestAuthException(int responseStatus, Throwable throwable) { argument 50 super(throwable); 59 * @param throwable The cause of the exception. 61 public RestAuthException(int responseStatus, String errorMessage, Throwable throwable) { argument 62 super(errorMessage, throwable);
|
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/exceptions/ |
H A D | RestAuthException.java | 47 * @param throwable The cause of the exception. 49 public RestAuthException(int responseStatus, Throwable throwable) { argument 50 super(throwable); 59 * @param throwable The cause of the exception. 61 public RestAuthException(int responseStatus, String errorMessage, Throwable throwable) { argument 62 super(errorMessage, throwable);
|
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/oauth2/restlet/ |
H A D | ExceptionHandler.java | 76 * @param throwable The throwable. 81 public void handle(Throwable throwable, Context context, Request request, Response response) { argument 83 if (throwable.getCause() instanceof OAuth2RestletException) { 84 final OAuth2RestletException e = (OAuth2RestletException) throwable.getCause(); 87 final ServerException serverException = new ServerException(throwable); 142 * If the throwable is not a OAuth2RestletException then it will be wrapped as a ServerException. 144 * If the throwable is a OAuth2RestletException then it will be set on the response as a Json representation. 146 * @param throwable The throwable 149 handle(Throwable throwable, Response response) argument 159 toOAuth2RestletException(Throwable throwable) argument [all...] |
/forgerock/openam-v13/openam-rest/src/main/java/org/forgerock/openam/rest/service/ |
H A D | RestStatusService.java | 44 Throwable throwable = status.getThrowable(); 46 if (throwable != null && throwable.getMessage() != null) { 49 if (throwable instanceof ResourceException) { 50 jsonResponse = ((ResourceException) throwable).toJsonValue(); 52 jsonResponse = ResourceException.getException(status.getCode(), throwable.getMessage()).toJsonValue();
|
/forgerock/openam/openam-rest/src/main/java/org/forgerock/openam/rest/service/ |
H A D | RestStatusService.java | 44 Throwable throwable = status.getThrowable(); 46 if (throwable != null && throwable.getMessage() != null) { 49 if (throwable instanceof ResourceException) { 50 jsonResponse = ((ResourceException) throwable).toJsonValue(); 52 jsonResponse = ResourceException.getException(status.getCode(), throwable.getMessage()).toJsonValue();
|
/forgerock/openidm-v4/openidm-patch-base/src/main/java/org/forgerock/openidm/patch/utils/ |
H A D | SingleLineFormatter.java | 33 String throwable = ""; 40 throwable = sw.toString(); 48 throwable);
|
/forgerock/opendj2/src/quicksetup/org/opends/quicksetup/util/ |
H A D | BackgroundTask.java | 57 * @throws Throwable throwable that will be passed through the method 70 * then the {@code throwable} argument will not be {@code null}. 76 * @param throwable A {@code Throwable} instance (e.g., an exception) that 81 Throwable throwable); 80 backgroundTaskCompleted(T returnValue, Throwable throwable) argument
|
/forgerock/opendj-b2.6/src/quicksetup/org/opends/quicksetup/util/ |
H A D | BackgroundTask.java | 58 * @throws Throwable throwable that will be passed through the method 71 * then the {@code throwable} argument will not be {@code null}. 77 * @param throwable A {@code Throwable} instance (e.g., an exception) that 82 Throwable throwable); 81 backgroundTaskCompleted(T returnValue, Throwable throwable) argument
|
/forgerock/opendj2.6.2/src/quicksetup/org/opends/quicksetup/util/ |
H A D | BackgroundTask.java | 58 * @throws Throwable throwable that will be passed through the method 71 * then the {@code throwable} argument will not be {@code null}. 77 * @param throwable A {@code Throwable} instance (e.g., an exception) that 82 Throwable throwable); 81 backgroundTaskCompleted(T returnValue, Throwable throwable) argument
|
/forgerock/opendj2-hg/src/quicksetup/org/opends/quicksetup/util/ |
H A D | BackgroundTask.java | 57 * @throws Throwable throwable that will be passed through the method 70 * then the {@code throwable} argument will not be {@code null}. 76 * @param throwable A {@code Throwable} instance (e.g., an exception) that 81 Throwable throwable); 80 backgroundTaskCompleted(T returnValue, Throwable throwable) argument
|
/forgerock/opendj2-jel-hg/src/quicksetup/org/opends/quicksetup/util/ |
H A D | BackgroundTask.java | 58 * @throws Throwable throwable that will be passed through the method 71 * then the {@code throwable} argument will not be {@code null}. 77 * @param throwable A {@code Throwable} instance (e.g., an exception) that 82 Throwable throwable); 81 backgroundTaskCompleted(T returnValue, Throwable throwable) argument
|
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/quicksetup/util/ |
H A D | BackgroundTask.java | 58 * @throws Throwable throwable that will be passed through the method 71 * then the {@code throwable} argument will not be {@code null}. 77 * @param throwable A {@code Throwable} instance (e.g., an exception) that 82 Throwable throwable); 81 backgroundTaskCompleted(T returnValue, Throwable throwable) argument
|
/forgerock/openam-v13/openam-oauth2-common/oauth2-restlet/src/main/java/org/forgerock/oauth2/restlet/ |
H A D | ExceptionHandler.java | 76 * @param throwable The throwable. 81 public void handle(Throwable throwable, Context context, Request request, Response response) { argument 83 if (throwable.getCause() instanceof OAuth2RestletException) { 84 final OAuth2RestletException e = (OAuth2RestletException) throwable.getCause(); 87 final ServerException serverException = new ServerException(throwable); 142 * If the throwable is not a OAuth2RestletException then it will be wrapped as a ServerException. 144 * If the throwable is a OAuth2RestletException then it will be set on the response as a Json representation. 146 * @param throwable The throwable 149 handle(Throwable throwable, Response response) argument 159 toOAuth2RestletException(Throwable throwable) argument [all...] |
/forgerock/openam-v13/openam-slf4j/src/main/java/org/forgerock/openam/slf4j/ |
H A D | AMDebugLogger.java | 52 public void trace(String s, Throwable throwable) { argument 53 debug.message(s, throwable); 76 public void debug(String s, Throwable throwable) { argument 77 debug.message(s, throwable); 100 public void info(String s, Throwable throwable) { argument 101 debug.message(s, throwable); 124 public void warn(String s, Throwable throwable) { argument 125 debug.warning(s, throwable); 148 public void error(String s, Throwable throwable) { argument 149 debug.error(s, throwable); [all...] |
/forgerock/openam/openam-slf4j/src/main/java/org/forgerock/openam/slf4j/ |
H A D | AMDebugLogger.java | 54 public void trace(String s, Throwable throwable) { argument 55 debug.message(s, throwable); 78 public void debug(String s, Throwable throwable) { argument 79 debug.message(s, throwable); 102 public void info(String s, Throwable throwable) { argument 103 debug.message(s, throwable); 126 public void warn(String s, Throwable throwable) { argument 127 debug.warning(s, throwable); 150 public void error(String s, Throwable throwable) { argument 151 debug.error(s, throwable); [all...] |
/forgerock/openam-v13/openam-uma/src/main/java/org/forgerock/openam/uma/ |
H A D | UmaExceptionHandler.java | 51 * @param throwable The throwable 53 protected void handleException(Response response, Throwable throwable) { argument 54 Throwable cause = throwable.getCause(); 63 setExceptionResponse(response, throwable, response.getStatus().getCode(), "server_error", null); 67 private void setExceptionResponse(Response response, Throwable throwable, int statusCode, String error, argument 71 responseBody.put("error_description", throwable.getMessage());
|