Searched refs:nestedException (Results 1 - 25 of 33) sorted by relevance

12

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/delegation/
H A DDelegationException.java53 * @param nestedException the exception caught by the code block creating
57 public DelegationException(Throwable nestedException) { argument
58 super(nestedException);
65 * @param nestedException the exception caught by the code block creating
69 public DelegationException(String message, Throwable nestedException) { argument
70 super(message, nestedException);
93 * @param nestedException The root cause of this error
96 Throwable nestedException) {
97 super(rbName, errorCode, args, nestedException);
95 DelegationException(String rbName, String errorCode, Object[] args, Throwable nestedException) argument
/forgerock/openam/openam-core/src/main/java/com/sun/identity/delegation/
H A DDelegationException.java53 * @param nestedException the exception caught by the code block creating
57 public DelegationException(Throwable nestedException) { argument
58 super(nestedException);
65 * @param nestedException the exception caught by the code block creating
69 public DelegationException(String message, Throwable nestedException) { argument
70 super(message, nestedException);
93 * @param nestedException The root cause of this error
96 Throwable nestedException) {
97 super(rbName, errorCode, args, nestedException);
95 DelegationException(String rbName, String errorCode, Object[] args, Throwable nestedException) argument
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/
H A DPolicyException.java113 * @param nestedException the exception caught by the code block creating
117 public PolicyException(Throwable nestedException) { argument
118 super(nestedException);
124 * @param nestedException the exception caught by the code block creating
128 public PolicyException(String message, Throwable nestedException) { argument
129 super(message, nestedException);
148 * @param nestedException The root cause of this error
151 Throwable nestedException) {
152 super (rbName,errorCode,args,nestedException);
150 PolicyException(String rbName, String errorCode, Object[] args, Throwable nestedException) argument
H A DChainedException.java62 * @param nestedException Exception caught by the code block throwing
65 public ChainedException(String message, Throwable nestedException) { argument
67 _nestedException = nestedException;
72 * @param nestedException Exception caught by the code block throwing
75 public ChainedException(Throwable nestedException) { argument
76 _nestedException = nestedException;
111 * @param nestedException - The root cause of this error
116 Object[] args,Throwable nestedException
121 _nestedException = nestedException;
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/
H A DPolicyException.java113 * @param nestedException the exception caught by the code block creating
117 public PolicyException(Throwable nestedException) { argument
118 super(nestedException);
124 * @param nestedException the exception caught by the code block creating
128 public PolicyException(String message, Throwable nestedException) { argument
129 super(message, nestedException);
148 * @param nestedException The root cause of this error
151 Throwable nestedException) {
152 super (rbName,errorCode,args,nestedException);
150 PolicyException(String rbName, String errorCode, Object[] args, Throwable nestedException) argument
H A DChainedException.java62 * @param nestedException Exception caught by the code block throwing
65 public ChainedException(String message, Throwable nestedException) { argument
67 _nestedException = nestedException;
72 * @param nestedException Exception caught by the code block throwing
75 public ChainedException(Throwable nestedException) { argument
76 _nestedException = nestedException;
111 * @param nestedException - The root cause of this error
116 Object[] args,Throwable nestedException
121 _nestedException = nestedException;
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/remote/
H A DPolicyEvaluationException.java59 * @param nestedException the exception caught by the code block creating
62 public PolicyEvaluationException(Throwable nestedException) { argument
63 super(nestedException);
71 * @param nestedException the exception caught by the code block creating
75 public PolicyEvaluationException(Throwable nestedException, String reqId) { argument
76 super(nestedException);
99 * @param nestedException the exception caught by the code block creating
104 Object[] args, Throwable nestedException, String reqId) {
105 super (rbName,errorCode,args,nestedException);
128 * @param nestedException th
103 PolicyEvaluationException(String rbName, String errorCode, Object[] args, Throwable nestedException, String reqId) argument
131 PolicyEvaluationException(String rbName, String errorCode, Object[] args, Throwable nestedException) argument
155 PolicyEvaluationException(String message, Throwable nestedException) argument
169 PolicyEvaluationException(String message, Throwable nestedException, String reqId) argument
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/remote/
H A DPolicyEvaluationException.java59 * @param nestedException the exception caught by the code block creating
62 public PolicyEvaluationException(Throwable nestedException) { argument
63 super(nestedException);
71 * @param nestedException the exception caught by the code block creating
75 public PolicyEvaluationException(Throwable nestedException, String reqId) { argument
76 super(nestedException);
99 * @param nestedException the exception caught by the code block creating
104 Object[] args, Throwable nestedException, String reqId) {
105 super (rbName,errorCode,args,nestedException);
128 * @param nestedException th
103 PolicyEvaluationException(String rbName, String errorCode, Object[] args, Throwable nestedException, String reqId) argument
131 PolicyEvaluationException(String rbName, String errorCode, Object[] args, Throwable nestedException) argument
155 PolicyEvaluationException(String message, Throwable nestedException) argument
169 PolicyEvaluationException(String message, Throwable nestedException, String reqId) argument
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/interaction/
H A DInteractionException.java51 * @param nestedException <code>Throwable</code> nested in this exception.
53 public InteractionException(Throwable nestedException) { argument
54 super(nestedException);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/interaction/
H A DInteractionException.java51 * @param nestedException <code>Throwable</code> nested in this exception.
53 public InteractionException(Throwable nestedException) { argument
54 super(nestedException);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/spi/
H A DAuthLoginException.java63 * @param nestedException
66 public AuthLoginException(String message, Throwable nestedException) { argument
68 initCause(nestedException);
75 * @param nestedException
80 public AuthLoginException(Throwable nestedException) { argument
81 initCause(nestedException);
82 if (nestedException instanceof L10NMessage) {
83 _errorCode = ((L10NMessage) nestedException).getErrorCode();
123 * @param nestedException
129 Throwable nestedException) {
128 AuthLoginException(String rbName, String errorCode, Object[] args, Throwable nestedException) argument
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/spi/
H A DAuthLoginException.java63 * @param nestedException
66 public AuthLoginException(String message, Throwable nestedException) { argument
68 initCause(nestedException);
75 * @param nestedException
80 public AuthLoginException(Throwable nestedException) { argument
81 initCause(nestedException);
82 if (nestedException instanceof L10NMessage) {
83 _errorCode = ((L10NMessage) nestedException).getErrorCode();
123 * @param nestedException
129 Throwable nestedException) {
128 AuthLoginException(String rbName, String errorCode, Object[] args, Throwable nestedException) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/common/
H A DChainedException.java73 * @param nestedException
76 public ChainedException(String message, Throwable nestedException) { argument
78 _nestedException = nestedException;
84 * @param nestedException
87 public ChainedException(Throwable nestedException) { argument
88 _nestedException = nestedException;
126 * @param nestedException -
130 Throwable nestedException) {
134 _nestedException = nestedException;
129 ChainedException(String rbName, String errorCode, Object[] args, Throwable nestedException) argument
/forgerock/openam/openam-core/src/main/java/com/sun/identity/common/
H A DChainedException.java73 * @param nestedException
76 public ChainedException(String message, Throwable nestedException) { argument
78 _nestedException = nestedException;
84 * @param nestedException
87 public ChainedException(Throwable nestedException) { argument
88 _nestedException = nestedException;
126 * @param nestedException -
130 Throwable nestedException) {
134 _nestedException = nestedException;
129 ChainedException(String rbName, String errorCode, Object[] args, Throwable nestedException) argument
/forgerock/openam-v13/openam-schema/openam-diagnostics-schema/src/main/java/com/sun/identity/diagnostic/base/core/jaxbgen/impl/runtime/
H A DValidationContext.java177 public void reportEvent(ValidatableObject source, Exception nestedException ) throws AbortSerializationException {
181 nestedException.toString(),
183 nestedException ) );
/forgerock/openam-v13/openam-schema/openam-liberty-schema/src/main/java/com/sun/identity/federation/jaxb/entityconfig/impl/runtime/
H A DValidationContext.java177 public void reportEvent(ValidatableObject source, Exception nestedException ) throws AbortSerializationException {
181 nestedException.toString(),
183 nestedException ) );
/forgerock/openam-v13/openam-schema/openam-saml2-schema/src/main/java/com/sun/identity/saml2/jaxb/assertion/impl/runtime/
H A DValidationContext.java177 public void reportEvent(ValidatableObject source, Exception nestedException ) throws AbortSerializationException {
181 nestedException.toString(),
183 nestedException ) );
/forgerock/openam-v13/openam-schema/openam-wsfederation-schema/src/main/java/com/sun/identity/wsfederation/jaxb/entityconfig/impl/runtime/
H A DValidationContext.java177 public void reportEvent(ValidatableObject source, Exception nestedException ) throws AbortSerializationException {
181 nestedException.toString(),
183 nestedException ) );
/forgerock/openam/openam-schema/openam-liberty-schema/src/main/java/com/sun/identity/federation/jaxb/entityconfig/impl/runtime/
H A DValidationContext.java177 public void reportEvent(ValidatableObject source, Exception nestedException ) throws AbortSerializationException {
181 nestedException.toString(),
183 nestedException ) );
/forgerock/openam/openam-schema/openam-saml2-schema/src/main/java/com/sun/identity/saml2/jaxb/assertion/impl/runtime/
H A DValidationContext.java177 public void reportEvent(ValidatableObject source, Exception nestedException ) throws AbortSerializationException {
181 nestedException.toString(),
183 nestedException ) );
/forgerock/openam/openam-schema/openam-wsfederation-schema/src/main/java/com/sun/identity/wsfederation/jaxb/entityconfig/impl/runtime/
H A DValidationContext.java177 public void reportEvent(ValidatableObject source, Exception nestedException ) throws AbortSerializationException {
181 nestedException.toString(),
183 nestedException ) );
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/client/
H A DPolicyEvaluator.java593 Throwable nestedException = pe.getNestedException();
594 if ((nestedException != null)
595 && (nestedException instanceof SessionException)) {
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/client/
H A DPolicyEvaluator.java593 Throwable nestedException = pe.getNestedException();
594 if ((nestedException != null)
595 && (nestedException instanceof SessionException)) {
/forgerock/opendj-b2.6/resource/dsml/lib/
H A Djaxb1-impl.jarMETA-INF/ META-INF/MANIFEST.MF COPYING.txt META-INF/services/ META-INF/ ...
/forgerock/opendj2-jel-hg/resource/dsml/lib/
H A Djaxb1-impl.jarMETA-INF/ META-INF/MANIFEST.MF COPYING.txt META-INF/services/ META-INF/ ...

Completed in 95 milliseconds

12