/forgerock/openidm-v4/openidm-patch-base/src/main/java/org/forgerock/openidm/patch/exception/ |
H A D | package-info.java | 18 * OpenIDM patch module exception classes. 22 package org.forgerock.openidm.patch.exception;
|
/forgerock/openam-v13/openam-scripting/src/main/java/org/forgerock/openam/scripting/ |
H A D | ScriptException.java | 24 * General script exception that allows for localised messages. 34 * @param errorCode The error code to use for the exception message. 46 * @param errorCode The error code to use for the exception message. 65 * @param errorCode The error code to use for the exception message. 72 final ScriptException exception = new ScriptException(errorCode, cause, arguments); 73 logger.error(exception.getMessage(), cause); 74 return exception; 81 * @param errorCode The error code to use for the exception message. 88 final ScriptException exception = new ScriptException(errorCode, cause, arguments); 89 logger.debug(exception [all...] |
/forgerock/openam/openam-scripting/src/main/java/org/forgerock/openam/scripting/ |
H A D | ScriptException.java | 24 * General script exception that allows for localised messages. 34 * @param errorCode The error code to use for the exception message. 46 * @param errorCode The error code to use for the exception message. 65 * @param errorCode The error code to use for the exception message. 72 final ScriptException exception = new ScriptException(errorCode, cause, arguments); 73 logger.error(exception.getMessage(), cause); 74 return exception; 81 * @param errorCode The error code to use for the exception message. 88 final ScriptException exception = new ScriptException(errorCode, cause, arguments); 89 logger.debug(exception [all...] |
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/browser/ |
H A D | BasicNodeError.java | 37 private Exception exception; field in class:BasicNodeError 42 * @param state the state of the refresher when the exception occurred. 43 * @param x the exception. 44 * @param arg the argument of the exception. 48 exception = x; 53 * Returns the state of the refresher when the exception occurred. 54 * @return the state of the refresher when the exception occurred. 61 * Returns the exception. 62 * @return the exception. 65 return exception; [all...] |
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/browser/ |
H A D | BasicNodeError.java | 38 private Exception exception; field in class:BasicNodeError 43 * @param state the state of the refresher when the exception occurred. 44 * @param x the exception. 45 * @param arg the argument of the exception. 49 exception = x; 54 * Returns the state of the refresher when the exception occurred. 55 * @return the state of the refresher when the exception occurred. 62 * Returns the exception. 63 * @return the exception. 66 return exception; [all...] |
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/browser/ |
H A D | BasicNodeError.java | 38 private Exception exception; field in class:BasicNodeError 43 * @param state the state of the refresher when the exception occurred. 44 * @param x the exception. 45 * @param arg the argument of the exception. 49 exception = x; 54 * Returns the state of the refresher when the exception occurred. 55 * @return the state of the refresher when the exception occurred. 62 * Returns the exception. 63 * @return the exception. 66 return exception; [all...] |
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/browser/ |
H A D | BasicNodeError.java | 37 private Exception exception; field in class:BasicNodeError 42 * @param state the state of the refresher when the exception occurred. 43 * @param x the exception. 44 * @param arg the argument of the exception. 48 exception = x; 53 * Returns the state of the refresher when the exception occurred. 54 * @return the state of the refresher when the exception occurred. 61 * Returns the exception. 62 * @return the exception. 65 return exception; [all...] |
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/browser/ |
H A D | BasicNodeError.java | 38 private Exception exception; field in class:BasicNodeError 43 * @param state the state of the refresher when the exception occurred. 44 * @param x the exception. 45 * @param arg the argument of the exception. 49 exception = x; 54 * Returns the state of the refresher when the exception occurred. 55 * @return the state of the refresher when the exception occurred. 62 * Returns the exception. 63 * @return the exception. 66 return exception; [all...] |
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/browser/ |
H A D | BasicNodeError.java | 37 private Exception exception; field in class:BasicNodeError 42 * @param state the state of the refresher when the exception occurred. 43 * @param x the exception. 44 * @param arg the argument of the exception. 48 exception = x; 53 * Returns the state of the refresher when the exception occurred. 54 * @return the state of the refresher when the exception occurred. 61 * Returns the exception. 62 * @return the exception. 65 return exception; [all...] |
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/oauth2/restlet/ |
H A D | ExceptionHandler.java | 43 * Handles any exception that is thrown when processing a OAuth2 request, by converting to a OAuth2RestletException, 74 * Handles any exception that is thrown when processing a OAuth2 request. 88 final OAuth2RestletException exception = new OAuth2RestletException(serverException.getStatusCode(), 90 handle(exception, context, request, response); 98 * redirected to the redirect uri set on the exception. 101 * agent will be redrected to the redirect uri with the exception message in the redirect uri. 105 * @param exception The OAuth2RestletException. 110 private void handle(OAuth2RestletException exception, Context context, Request request, Response response) { argument 112 if (exception.getStatus().equals(Status.REDIRECTION_TEMPORARY)) { 113 Redirector redirector = new Redirector(new Context(), exception [all...] |
/forgerock/openidm-v4/openidm-patch-base/src/main/java/org/forgerock/openidm/patch/ |
H A D | Patch.java | 22 import org.forgerock.openidm.patch.exception.PatchException; 23 import org.forgerock.openidm.patch.exception.PostPatchException; 24 import org.forgerock.openidm.patch.exception.PrePatchException;
|
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/http/ |
H A D | AuthenticationServiceV2.java | 50 protected Response handleErrorResponse(Request request, Status status, Exception exception) { argument 52 DEBUG.warning("Authentication encountered an error: ", exception); 54 if (exception instanceof RestAuthResponseException) { 55 final RestAuthResponseException authResponseException = (RestAuthResponseException)exception; 62 } else if (exception instanceof RestAuthException) { 63 final RestAuthException rae = (RestAuthException)exception; 72 } else if (exception == null) { 76 return createExceptionResponse(response, ResourceException.getException(status.getCode(), exception.getMessage(), exception)); 80 private Response createExceptionResponse(Response response, ResourceException exception) { argument [all...] |
/forgerock/openidm-v4/openidm-zip/src/main/resources/bin/defaults/script/audit/ |
H A D | stacktraceFormatter.js | 2 /*global exception*/ 7 exception.printStackTrace(pw);
|
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/http/ |
H A D | AuthenticationServiceV2.java | 50 protected Response handleErrorResponse(Request request, Status status, Exception exception) { argument 53 if (exception instanceof RestAuthResponseException) { 54 final RestAuthResponseException authResponseException = (RestAuthResponseException)exception; 61 } else if (exception instanceof RestAuthException) { 62 final RestAuthException rae = (RestAuthException)exception; 71 } else if (exception == null) { 75 return createExceptionResponse(response, ResourceException.getException(status.getCode(), exception.getMessage(), exception)); 79 private Response createExceptionResponse(Response response, ResourceException exception) { argument 82 if (exception [all...] |
/forgerock/openam-v13/openam-schema/openam-diagnostics-schema/src/main/java/com/sun/identity/diagnostic/base/core/jaxbgen/impl/runtime/ |
H A D | ErrorHandlerAdaptor.java | 42 public void error(SAXParseException exception) argument 45 propagateEvent( ValidationEvent.ERROR, exception ); 48 public void warning(SAXParseException exception) argument 51 propagateEvent( ValidationEvent.WARNING, exception ); 54 public void fatalError(SAXParseException exception) argument 57 propagateEvent( ValidationEvent.FATAL_ERROR, exception ); 65 // sax exception, dom locators keep a reference to their DOMScanner
|
/forgerock/openam-v13/openam-schema/openam-liberty-schema/src/main/java/com/sun/identity/federation/jaxb/entityconfig/impl/runtime/ |
H A D | ErrorHandlerAdaptor.java | 42 public void error(SAXParseException exception) argument 45 propagateEvent( ValidationEvent.ERROR, exception ); 48 public void warning(SAXParseException exception) argument 51 propagateEvent( ValidationEvent.WARNING, exception ); 54 public void fatalError(SAXParseException exception) argument 57 propagateEvent( ValidationEvent.FATAL_ERROR, exception ); 65 // sax exception, dom locators keep a reference to their DOMScanner
|
/forgerock/openam-v13/openam-schema/openam-saml2-schema/src/main/java/com/sun/identity/saml2/jaxb/assertion/impl/runtime/ |
H A D | ErrorHandlerAdaptor.java | 42 public void error(SAXParseException exception) argument 45 propagateEvent( ValidationEvent.ERROR, exception ); 48 public void warning(SAXParseException exception) argument 51 propagateEvent( ValidationEvent.WARNING, exception ); 54 public void fatalError(SAXParseException exception) argument 57 propagateEvent( ValidationEvent.FATAL_ERROR, exception ); 65 // sax exception, dom locators keep a reference to their DOMScanner
|
/forgerock/openam-v13/openam-schema/openam-wsfederation-schema/src/main/java/com/sun/identity/wsfederation/jaxb/entityconfig/impl/runtime/ |
H A D | ErrorHandlerAdaptor.java | 42 public void error(SAXParseException exception) argument 45 propagateEvent( ValidationEvent.ERROR, exception ); 48 public void warning(SAXParseException exception) argument 51 propagateEvent( ValidationEvent.WARNING, exception ); 54 public void fatalError(SAXParseException exception) argument 57 propagateEvent( ValidationEvent.FATAL_ERROR, exception ); 65 // sax exception, dom locators keep a reference to their DOMScanner
|
/forgerock/openam/openam-schema/openam-liberty-schema/src/main/java/com/sun/identity/federation/jaxb/entityconfig/impl/runtime/ |
H A D | ErrorHandlerAdaptor.java | 42 public void error(SAXParseException exception) argument 45 propagateEvent( ValidationEvent.ERROR, exception ); 48 public void warning(SAXParseException exception) argument 51 propagateEvent( ValidationEvent.WARNING, exception ); 54 public void fatalError(SAXParseException exception) argument 57 propagateEvent( ValidationEvent.FATAL_ERROR, exception ); 65 // sax exception, dom locators keep a reference to their DOMScanner
|
/forgerock/openam/openam-schema/openam-saml2-schema/src/main/java/com/sun/identity/saml2/jaxb/assertion/impl/runtime/ |
H A D | ErrorHandlerAdaptor.java | 42 public void error(SAXParseException exception) argument 45 propagateEvent( ValidationEvent.ERROR, exception ); 48 public void warning(SAXParseException exception) argument 51 propagateEvent( ValidationEvent.WARNING, exception ); 54 public void fatalError(SAXParseException exception) argument 57 propagateEvent( ValidationEvent.FATAL_ERROR, exception ); 65 // sax exception, dom locators keep a reference to their DOMScanner
|
/forgerock/openam/openam-schema/openam-wsfederation-schema/src/main/java/com/sun/identity/wsfederation/jaxb/entityconfig/impl/runtime/ |
H A D | ErrorHandlerAdaptor.java | 42 public void error(SAXParseException exception) argument 45 propagateEvent( ValidationEvent.ERROR, exception ); 48 public void warning(SAXParseException exception) argument 51 propagateEvent( ValidationEvent.WARNING, exception ); 54 public void fatalError(SAXParseException exception) argument 57 propagateEvent( ValidationEvent.FATAL_ERROR, exception ); 65 // sax exception, dom locators keep a reference to their DOMScanner
|
/forgerock/openam-v13/openam-uma/src/main/java/org/forgerock/openam/uma/ |
H A D | UmaExceptionHandler.java | 56 UmaException exception = (UmaException) cause; 57 setExceptionResponse(response, cause, exception.getStatusCode(), exception.getError(), 58 exception.getDetail()); 60 OAuth2Exception exception = (OAuth2Exception) cause; 61 setExceptionResponse(response, cause, exception.getStatusCode(), exception.getError(), null);
|
/forgerock/openam/openam-uma/src/main/java/org/forgerock/openam/uma/ |
H A D | UmaExceptionHandler.java | 56 UmaException exception = (UmaException) cause; 57 setExceptionResponse(response, cause, exception.getStatusCode(), exception.getError(), 58 exception.getDetail()); 60 OAuth2Exception exception = (OAuth2Exception) cause; 61 setExceptionResponse(response, cause, exception.getStatusCode(), exception.getError(), null);
|
/forgerock/openam-v13/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/configurator/ |
H A D | InstallException.java | 37 * The basic exception type used within the Product Installer to indicate the 39 * functionality to preserve the root cause exception by allowing the chaining 46 * with the exception that originally caused the failure. 51 * The exception that originally caused the failure. 70 * when this exception was created. 79 * Prints the stack trace of this exception to the specified 111 * Prints the stack trace of this exception to the specified 123 * Returns the exception that was supplied to the constructor at the time 124 * when this exception was created. 126 * @return The inner exception 132 setInnerException(Throwable exception) argument 140 private Throwable exception; field in class:InstallException [all...] |
/forgerock/openam/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/configurator/ |
H A D | InstallException.java | 37 * The basic exception type used within the Product Installer to indicate the 39 * functionality to preserve the root cause exception by allowing the chaining 46 * with the exception that originally caused the failure. 51 * The exception that originally caused the failure. 70 * when this exception was created. 79 * Prints the stack trace of this exception to the specified 111 * Prints the stack trace of this exception to the specified 123 * Returns the exception that was supplied to the constructor at the time 124 * when this exception was created. 126 * @return The inner exception 132 setInnerException(Throwable exception) argument 140 private Throwable exception; field in class:InstallException [all...] |