Searched defs:exception (Results 1 - 25 of 212) sorted by relevance

123456789

/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;
H A DPatchException.java17 package org.forgerock.openidm.patch.exception;
28 * Constructs a new exception with {@code null} as its detail message.
34 * Constructs a new exception with the specified detail message.
43 * Constructs a new exception with the specified detail message and nested throwable.
46 * @param ex The throwable which caused the exception
H A DPostPatchException.java17 package org.forgerock.openidm.patch.exception;
28 * Constructs a new exception with {@code null} as its detail message.
34 * Constructs a new exception with the specified detail message.
43 * Constructs a new exception with the specified detail message and nested throwable.
46 * @param ex The throwable which caused the exception
H A DPrePatchException.java17 package org.forgerock.openidm.patch.exception;
28 * Constructs a new exception with {@code null} as its detail message.
34 * Constructs a new exception with the specified detail message.
43 * Constructs a new exception with the specified detail message and nested throwable.
46 * @param ex The throwable which caused the exception
/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/openam-v13/openam-core/src/main/java/org/forgerock/openam/cts/impl/queue/
H A DDeleteOnQueryResultHandler.java70 public void processError(Exception exception) { argument
/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-v13/openam-scripting/src/main/java/org/forgerock/openam/scripting/rest/
H A DScriptExceptionMappingHandler.java74 * Get the localized message for the specified script exception.
76 * @param exception The exception that contains the message.
79 private String getLocalizedMessage(Context context, ScriptException exception) { argument
83 return exception.getMessage();
85 return exception.getL10NMessage(local);
/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/openam-scripting/src/main/java/org/forgerock/openam/scripting/rest/
H A DScriptExceptionMappingHandler.java76 * Get the localized message for the specified script exception.
78 * @param exception The exception that contains the message.
81 private String getLocalizedMessage(Context context, ScriptException exception) { argument
85 return exception.getMessage();
87 return exception.getL10NMessage(local);
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/cts/impl/queue/
H A DDeleteOnQueryResultHandler.java70 public void processError(Exception exception) { argument
/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/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/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/loggers/
H A DErrorLogPublisher.java102 * @param exception
103 * The exception to be logged. May be {@code null}.
106 LocalizableMessage message, Throwable exception);
105 log(String category, Severity severity, LocalizableMessage message, Throwable exception) argument
H A DErrorLogger.java107 * @param exception
108 * The exception to be logged. May be {@code null}.
110 public static void log(String category, Severity severity, LocalizableMessage message, Throwable exception) argument
114 publisher.log(category, severity, message, exception);
123 task.addLogMessage(severity, message, exception);
/forgerock/openam-v13/openam-oauth2-common/oauth2-restlet/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/openam-v13/openam-rest/src/main/java/org/forgerock/openam/forgerockrest/utils/
H A DXMLResourceExceptionHandler.java68 public void write(MessageContext context, AuthenticationException exception) { argument
69 Reject.ifNull(exception);
72 if (exception instanceof AuthenticationFailedException) {
73 jre = new PermanentException(Status.UNAUTHORIZED.getCode(), exception.getMessage(), null);
74 } else if (exception.getCause() instanceof ResourceException) {
75 jre = (ResourceException) exception.getCause();
77 LOGGER.error(exception.getMessage(), exception);
78 jre = new InternalServerErrorException("Authentication Failed", exception);
/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...]

Completed in 41 milliseconds

123456789