Searched defs:errorCode (Results 1 - 25 of 271) sorted by relevance

1234567891011

/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/sdk/
H A DAMEntryExistsException.java54 * @param errorCode
58 public AMEntryExistsException(String msg, String errorCode) { argument
59 super(msg, errorCode);
67 * @param errorCode
71 public AMEntryExistsException(SSOToken token, String errorCode) { argument
72 super(token, errorCode);
80 * @param errorCode
87 String msg, String errorCode, UMSException ue) {
88 super(msg, errorCode, ue);
96 * @param errorCode
86 AMEntryExistsException( String msg, String errorCode, UMSException ue) argument
102 AMEntryExistsException(SSOToken token, String errorCode, UMSException ue) argument
118 AMEntryExistsException(String msg, String errorCode, Object args[]) argument
135 AMEntryExistsException(String msg, String errorCode, Object args[], UMSException ue) argument
[all...]
H A DAMEventManagerException.java45 public AMEventManagerException(String msg, String errorCode) { argument
46 super(msg, errorCode);
50 String msg, String errorCode, UMSException ue) {
51 super(msg, errorCode, ue);
55 String msg, String errorCode, Object args[]) {
56 super(msg, errorCode, args);
60 String msg, String errorCode, Object args[], UMSException ue) {
61 super(msg, errorCode, args, ue);
49 AMEventManagerException( String msg, String errorCode, UMSException ue) argument
54 AMEventManagerException( String msg, String errorCode, Object args[]) argument
59 AMEventManagerException( String msg, String errorCode, Object args[], UMSException ue) argument
H A DAMInvalidDNException.java47 * @param errorCode
52 public AMInvalidDNException(String msg, String errorCode) { argument
53 super(msg, errorCode);
62 String msg, String errorCode, UMSException ue) {
63 super(msg, errorCode, ue);
71 * @param errorCode
77 public AMInvalidDNException(String msg, String errorCode, Object args[]) { argument
78 super(msg, errorCode, args);
84 protected AMInvalidDNException(String msg, String errorCode, Object args[], argument
86 super(msg, errorCode, arg
61 AMInvalidDNException( String msg, String errorCode, UMSException ue) argument
[all...]
H A DAMPostCallBackException.java54 * @param errorCode
58 public AMPostCallBackException(String msg, String errorCode) { argument
59 super(msg, errorCode);
69 * @param errorCode
72 public AMPostCallBackException(SSOToken token, String errorCode) { argument
73 super(token, errorCode);
82 * @param errorCode
90 String errorCode, UMSException ue)
92 super(msg, errorCode, ue);
102 * @param errorCode
89 AMPostCallBackException(String msg, String errorCode, UMSException ue) argument
109 AMPostCallBackException(SSOToken token, String errorCode, UMSException ue) argument
126 AMPostCallBackException(String msg, String errorCode, Object[] args) argument
145 AMPostCallBackException(String msg, String errorCode, Object[] args, UMSException ue) argument
[all...]
H A DAMPreCallBackException.java54 * @param errorCode
58 public AMPreCallBackException(String msg, String errorCode) { argument
59 super(msg, errorCode);
68 * @param errorCode
72 public AMPreCallBackException(SSOToken token, String errorCode) { argument
73 super(token, errorCode);
82 * @param errorCode
88 public AMPreCallBackException(String msg, String errorCode, UMSException ue) argument
90 super(msg, errorCode, ue);
100 * @param errorCode
106 AMPreCallBackException(SSOToken token, String errorCode, UMSException ue) argument
123 AMPreCallBackException(String msg, String errorCode, Object[] args) argument
141 AMPreCallBackException(String msg, String errorCode, Object[] args, UMSException ue) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/spi/
H A DAMAuthCallBackException.java45 * @param errorCode Key of the error message in resource bundle.
48 public AMAuthCallBackException(String errorCode, Object[] args) { argument
49 super(errorCode, args);
H A DAuthenticationException.java54 * <code>errorCode</code> and using arguments to the message.
57 * @param errorCode Key to the message in resource bundle.
62 String errorCode,
64 super(rbName, errorCode, args);
60 AuthenticationException( String rbName, String errorCode, Object[] args) argument
H A DMessageLoginException.java44 * @param errorCode Key to the message in resource bundle.
49 String errorCode,
51 super(rbName, errorCode, args);
47 MessageLoginException( String rbName, String errorCode, Object[] args) argument
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/common/validation/
H A DValidationException.java53 * @param errorCode Key of the error message in the resource bundle.
55 public ValidationException(String rbName, String errorCode) { argument
56 super(rbName, errorCode, (Object[])null);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/delegation/
H A DDelegationException.java84 * @param errorCode Key to resource bundle. You can use:
89 * String localizedStr = rb.getString(errorCode);
95 public DelegationException(String rbName, String errorCode, Object[] args, argument
97 super(rbName, errorCode, args, nestedException);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/idm/
H A DIdRepoFatalException.java57 public IdRepoFatalException(String msg, String errorCode) { argument
58 super(msg, errorCode);
72 * @param errorCode
75 * String localizedStr = rb.getString(errorCode)</code>.
79 public IdRepoFatalException(String rbName, String errorCode, Object[] args) { argument
80 super(rbName, errorCode, args);
95 * @param errorCode
98 * String localizedStr = rb.getString(errorCode)</code>.
104 public IdRepoFatalException(String rbName, String errorCode, ResultCode ldapResultCode, Object[] args) { argument
105 super(rbName, errorCode, ldapResultCod
[all...]
H A DIdRepoUnsupportedOpException.java54 public IdRepoUnsupportedOpException(String msg, String errorCode) { argument
55 super(msg, errorCode);
69 * @param errorCode
72 * String localizedStr = rb.getString(errorCode)</code>.
76 public IdRepoUnsupportedOpException(String rbName, String errorCode, argument
78 super(rbName, errorCode, args);
H A DPasswordPolicyException.java38 * @param errorCode the error code
41 public PasswordPolicyException(ResultCode resultCode, String errorCode, Object... args) { argument
42 super(IdRepoBundle.BUNDLE_NAME, errorCode, String.valueOf(resultCode.intValue()), args);
53 public PasswordPolicyException(String errorCode, Object[] args) { argument
54 super(IdRepoBundle.BUNDLE_NAME, errorCode, args);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/sm/
H A DInvalidAttributeNameException.java66 * @param errorCode
75 public InvalidAttributeNameException(String rbName, String errorCode, argument
77 super(rbName, errorCode, args);
H A DSchemaException.java66 * @param errorCode
75 public SchemaException(String rbName, String errorCode, Object[] args) { argument
76 super(rbName, errorCode, args);
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/shared/validation/
H A DValidationException.java50 * @param errorCode Key of the error message in the resource bundle.
52 public ValidationException(String rbName, String errorCode) { argument
53 super(rbName, errorCode, (Object[])null);
/forgerock/openam-v13/openam-sts/openam-common-sts/src/main/java/org/forgerock/openam/sts/
H A DAMSTSRuntimeException.java26 private final int errorCode; field in class:AMSTSRuntimeException
29 errorCode = code;
34 errorCode = code;
38 public int getCode() { return errorCode; }
/forgerock/openam-v13/openam-datastore/src/main/java/org/forgerock/openam/idrepo/ldap/
H A DIdentityNotFoundException.java37 * @param errorCode
40 * String localizedStr = rb.getString(errorCode)</code>.
46 public IdentityNotFoundException(String rbName, String errorCode, ResultCode ldapResultCode, Object[] args) { argument
47 super(rbName, errorCode, ldapResultCode, args);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/cot/
H A DCOTException.java43 * @param errorCode Key to resource bundle. You can use
46 * String localizedStr = rb.getString(errorCode);
52 public COTException(String errorCode, Object[] args) { argument
53 super(COTUtils.RESOURCE_BUNDLE_NAME,errorCode, args);
62 * @param errorCode Key to resource bundle. You can use
65 * String localizedStr = rb.getString(errorCode);
71 public COTException(String rbName, String errorCode, Object[] args) { argument
72 super(rbName, errorCode, args);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/accountmgmt/
H A DFSAccountMgmtException.java39 * @param errorCode Key of the error message in resource bundle.
42 public FSAccountMgmtException(String errorCode, Object[] args) { argument
43 super(errorCode, args);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/login/
H A DFSPostLoginException.java46 * @param errorCode Key of the error message in resource bundle.
49 public FSPostLoginException(String errorCode, Object[] args) { argument
50 super(errorCode, args);
H A DFSPreLoginException.java43 * @param errorCode Key of the error message in resource bundle.
46 public FSPreLoginException(String errorCode, Object[] args) { argument
47 super(errorCode, args);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/
H A DFSLoginHelperException.java42 * @param errorCode Key of the error message in resource bundle.
45 public FSLoginHelperException(String errorCode, Object[] args) { argument
46 super(errorCode, args);
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/shared/validation/
H A DValidationException.java50 * @param errorCode Key of the error message in the resource bundle.
52 public ValidationException(String rbName, String errorCode) { argument
53 super(rbName, errorCode, (Object[])null);
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/sdk/
H A DAMEntryExistsException.java54 * @param errorCode
58 public AMEntryExistsException(String msg, String errorCode) { argument
59 super(msg, errorCode);
67 * @param errorCode
71 public AMEntryExistsException(SSOToken token, String errorCode) { argument
72 super(token, errorCode);
80 * @param errorCode
87 String msg, String errorCode, UMSException ue) {
88 super(msg, errorCode, ue);
96 * @param errorCode
86 AMEntryExistsException( String msg, String errorCode, UMSException ue) argument
102 AMEntryExistsException(SSOToken token, String errorCode, UMSException ue) argument
118 AMEntryExistsException(String msg, String errorCode, Object args[]) argument
135 AMEntryExistsException(String msg, String errorCode, Object args[], UMSException ue) argument
[all...]

Completed in 94 milliseconds

1234567891011