Searched refs:getException (Results 1 - 25 of 227) sorted by relevance

12345678910

/forgerock/openam-v13/openam-oauth2-common/oauth2-core/src/main/java/org/forgerock/oauth2/core/exceptions/
H A DClientAuthenticationFailureFactory.java33 public InvalidClientException getException() { method in class:ClientAuthenticationFailureFactory
42 public InvalidClientException getException(String message) { method in class:ClientAuthenticationFailureFactory
54 public InvalidClientException getException(OAuth2Request request, String message) { method in class:ClientAuthenticationFailureFactory
58 return getException(message);
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/oauth2/core/exceptions/
H A DClientAuthenticationFailureFactory.java33 public InvalidClientException getException() { method in class:ClientAuthenticationFailureFactory
42 public InvalidClientException getException(String message) { method in class:ClientAuthenticationFailureFactory
54 public InvalidClientException getException(OAuth2Request request, String message) { method in class:ClientAuthenticationFailureFactory
58 return getException(message);
/forgerock/openidm-v4/openidm-zip/src/main/resources/bin/defaults/script/
H A DlinkedView.js48 getException = function (e) {
71 currentResource["error"] = getException(e);
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/browser/
H A DBasicNodeError.java64 public Exception getException() { method in class:BasicNodeError
H A DSearchAbandonException.java65 Exception getException() { method in class:SearchAbandonException
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/browser/
H A DBasicNodeError.java65 public Exception getException() { method in class:BasicNodeError
H A DSearchAbandonException.java66 Exception getException() { method in class:SearchAbandonException
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/browser/
H A DBasicNodeError.java65 public Exception getException() { method in class:BasicNodeError
H A DSearchAbandonException.java66 Exception getException() { method in class:SearchAbandonException
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/browser/
H A DBasicNodeError.java64 public Exception getException() { method in class:BasicNodeError
H A DSearchAbandonException.java65 Exception getException() { method in class:SearchAbandonException
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/browser/
H A DBasicNodeError.java65 public Exception getException() { method in class:BasicNodeError
H A DSearchAbandonException.java66 Exception getException() { method in class:SearchAbandonException
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/browser/
H A DBasicNodeError.java64 public Exception getException() { method in class:BasicNodeError
H A DSearchAbandonException.java65 Exception getException() { method in class:SearchAbandonException
/forgerock/openam-v13/openam-rest/src/main/java/org/forgerock/openam/rest/service/
H A DRestStatusService.java52 jsonResponse = ResourceException.getException(status.getCode(), throwable.getMessage()).toJsonValue();
56 jsonResponse = ResourceException.getException(status.getCode(), status.getDescription()).toJsonValue();
58 jsonResponse = ResourceException.getException(status.getCode()).toJsonValue();
/forgerock/openam/openam-rest/src/main/java/org/forgerock/openam/rest/service/
H A DRestStatusService.java52 jsonResponse = ResourceException.getException(status.getCode(), throwable.getMessage()).toJsonValue();
56 jsonResponse = ResourceException.getException(status.getCode(), status.getDescription()).toJsonValue();
58 jsonResponse = ResourceException.getException(status.getCode()).toJsonValue();
/forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/
H A DClientCredentialsReader.java104 throw failureFactory.getException(request, "Client authentication failed");
118 throw failureFactory.getException(request, "Invalid authentication method for accessing this endpoint.");
132 throw failureFactory.getException(request, "JWT has expired");
136 throw failureFactory.getException(request, "JWT is not valid");
141 throw failureFactory.getException(request, "Client authentication failed");
145 throw failureFactory.getException(request, "Audience validation failed");
H A DClientAuthenticatorImpl.java105 throw failureFactory.getException(request, "Client authentication failed");
157 throw failureFactory.getException(request, "Missing requirements");
167 throw failureFactory.getException(request, "Client authentication failed");
171 throw failureFactory.getException(request, "Client authentication failed");
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/
H A DClientCredentialsReader.java104 throw failureFactory.getException(request, "Client authentication failed");
118 throw failureFactory.getException(request, "Invalid authentication method for accessing this endpoint.");
132 throw failureFactory.getException(request, "JWT has expired");
136 throw failureFactory.getException(request, "JWT is not valid");
141 throw failureFactory.getException(request, "Client authentication failed");
145 throw failureFactory.getException(request, "Audience validation failed");
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/http/
H A DAuthenticationServiceV2.java63 ResourceException cause = ResourceException.getException(rae.getStatusCode(), getLocalizedMessage(request, rae));
72 return createExceptionResponse(response, ResourceException.getException(status.getCode()));
75 return createExceptionResponse(response, ResourceException.getException(status.getCode(), exception.getMessage(), exception));
85 jsonResponse = ResourceException.getException(response.getStatus().getCode(), response.getStatus().getReasonPhrase()).toJsonValue();
/forgerock/openam/openam-core/src/main/java/com/iplanet/dpro/session/
H A DClientSdkSessionRequests.java81 while (sres.getException() != null) {
105 String exceptionMessage = sres.getException();
108 sres.getException());
129 throw new SessionException(sres.getException());
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/http/
H A DAuthenticationServiceV2.java64 ResourceException cause = ResourceException.getException(rae.getStatusCode(), getLocalizedMessage(request, rae));
73 return createExceptionResponse(response, ResourceException.getException(status.getCode()));
76 return createExceptionResponse(response, ResourceException.getException(status.getCode(), exception.getMessage(), exception));
86 jsonResponse = ResourceException.getException(response.getStatus().getCode(), response.getStatus().getReasonPhrase()).toJsonValue();
/forgerock/openam-v13/openam-oauth2-common/openid-connect-core/src/test/java/org/forgerock/openidconnect/
H A DSubjectTypeValidatorTest.java45 when(failureFactory.getException()).thenReturn(mock(InvalidClientException.class));
46 when(failureFactory.getException(anyString())).thenReturn(mock(InvalidClientException.class));
47 when(failureFactory.getException(any(OAuth2Request.class), anyString())).thenReturn(mock(InvalidClientException.class));
/forgerock/openam-v13/openam-scripting/src/main/java/org/forgerock/openam/scripting/rest/
H A DScriptExceptionMappingHandler.java47 return ResourceException.getException(getResourceErrorCode(error.getScriptErrorCode()),
58 return ResourceException.getException(getResourceErrorCode(error.getScriptErrorCode()),
69 return ResourceException.getException(getResourceErrorCode(error.getScriptErrorCode()), error.getMessage(),

Completed in 86 milliseconds

12345678910