/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/sdk/ |
H A D | AMEntryExistsException.java | 54 * @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 D | AMEventManagerException.java | 45 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 D | AMInvalidDNException.java | 47 * @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 D | AMPostCallBackException.java | 54 * @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 D | AMPreCallBackException.java | 54 * @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 D | AMAuthCallBackException.java | 45 * @param errorCode Key of the error message in resource bundle. 48 public AMAuthCallBackException(String errorCode, Object[] args) { argument 49 super(errorCode, args);
|
H A D | AuthenticationException.java | 54 * <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 D | MessageLoginException.java | 44 * @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 D | ValidationException.java | 53 * @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 D | DelegationException.java | 84 * @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 D | IdRepoFatalException.java | 57 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 D | IdRepoUnsupportedOpException.java | 54 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 D | PasswordPolicyException.java | 38 * @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 D | InvalidAttributeNameException.java | 66 * @param errorCode 75 public InvalidAttributeNameException(String rbName, String errorCode, argument 77 super(rbName, errorCode, args);
|
H A D | SchemaException.java | 66 * @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 D | ValidationException.java | 50 * @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 D | AMSTSRuntimeException.java | 26 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 D | IdentityNotFoundException.java | 37 * @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 D | COTException.java | 43 * @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 D | FSAccountMgmtException.java | 39 * @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 D | FSPostLoginException.java | 46 * @param errorCode Key of the error message in resource bundle. 49 public FSPostLoginException(String errorCode, Object[] args) { argument 50 super(errorCode, args);
|
H A D | FSPreLoginException.java | 43 * @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 D | FSLoginHelperException.java | 42 * @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 D | ValidationException.java | 50 * @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 D | AMEntryExistsException.java | 54 * @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...] |