Searched refs:exception (Results 1 - 25 of 330) sorted by relevance

1234567891011>>

/forgerock/openidm-v4/openidm-patch-base/src/main/java/org/forgerock/openidm/patch/exception/
H A Dpackage-info.java18 * 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 DScriptException.java24 * 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 DScriptException.java24 * 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 DBasicNodeError.java37 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 DBasicNodeError.java38 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 DBasicNodeError.java38 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 DBasicNodeError.java37 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 DBasicNodeError.java38 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 DBasicNodeError.java37 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 DExceptionHandler.java43 * 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 DPatch.java22 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 DAuthenticationServiceV2.java50 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 DstacktraceFormatter.js2 /*global exception*/
7 exception.printStackTrace(pw);
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/http/
H A DAuthenticationServiceV2.java50 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 DErrorHandlerAdaptor.java42 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 DErrorHandlerAdaptor.java42 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 DErrorHandlerAdaptor.java42 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 DErrorHandlerAdaptor.java42 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 DErrorHandlerAdaptor.java42 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 DErrorHandlerAdaptor.java42 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 DErrorHandlerAdaptor.java42 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 DUmaExceptionHandler.java56 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 DUmaExceptionHandler.java56 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 DInstallException.java37 * 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 DInstallException.java37 * 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...]

Completed in 135 milliseconds

1234567891011>>