Searched refs:errorCode (Results 126 - 150 of 357) sorted by relevance

1234567891011>>

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/common/configuration/
H A DConfigurationException.java45 private String errorCode; field in class:ConfigurationException
53 * Instead this constructor provides Resource Bundle name and errorCode
57 * @param errorCode Key to resource bundle. You can use
58 * <code>String localizedStr = rb.getString(errorCode)</code>
63 public ConfigurationException(String errorCode, Object[] args) { argument
64 this.errorCode = errorCode;
94 return errorCode;
124 if (errorCode == null) {
134 String mid = bundle.getString (errorCode);
[all...]
H A DUnknownPropertyNameException.java48 private String errorCode; field in class:UnknownPropertyNameException
56 * Instead this constructor provides Resource Bundle name and errorCode
60 * @param errorCode Key to resource bundle. You can use
61 * <code>String localizedStr = rb.getString(errorCode)</code>
66 public UnknownPropertyNameException(String errorCode, Object[] args) { argument
67 this.errorCode = errorCode;
98 return errorCode;
127 if (errorCode == null) {
137 String mid = bundle.getString (errorCode);
[all...]
/forgerock/openam-v13/openam-tools/openam-diagnostics/openam-diagnostics-base/src/main/java/com/sun/identity/diagnostic/base/core/common/
H A DDTException.java40 private String errorCode ; field in class:DTException
47 * @param errorCode Key to resource bundle.
52 public DTException(String errorCode, Object[] args, argument
54 this.errorCode = errorCode;
84 return errorCode;
113 if (errorCode == null) {
119 String mId = bundle.getString(errorCode);
/forgerock/openam-v13/openam-federation/OpenFM/src/main/java/com/sun/identity/workflow/
H A DWorkflowException.java46 private String errorCode; field in class:WorkflowException
54 * Instead this constructor provides Resource Bundle name and errorCode
58 * @param errorCode Key to resource bundle. You can use
59 * <code>String localizedStr = rb.getString(errorCode)</code>
64 public WorkflowException(String errorCode, Object... args) { argument
65 this.errorCode = errorCode;
95 return errorCode;
124 if (errorCode == null) {
134 String mid = bundle.getString (errorCode);
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/common/configuration/
H A DConfigurationException.java45 private String errorCode; field in class:ConfigurationException
53 * Instead this constructor provides Resource Bundle name and errorCode
57 * @param errorCode Key to resource bundle. You can use
58 * <code>String localizedStr = rb.getString(errorCode)</code>
63 public ConfigurationException(String errorCode, Object[] args) { argument
64 this.errorCode = errorCode;
94 return errorCode;
124 if (errorCode == null) {
134 String mid = bundle.getString (errorCode);
[all...]
H A DUnknownPropertyNameException.java48 private String errorCode; field in class:UnknownPropertyNameException
56 * Instead this constructor provides Resource Bundle name and errorCode
60 * @param errorCode Key to resource bundle. You can use
61 * <code>String localizedStr = rb.getString(errorCode)</code>
66 public UnknownPropertyNameException(String errorCode, Object[] args) { argument
67 this.errorCode = errorCode;
98 return errorCode;
127 if (errorCode == null) {
137 String mid = bundle.getString (errorCode);
[all...]
/forgerock/openam/openam-federation/OpenFM/src/main/java/com/sun/identity/workflow/
H A DWorkflowException.java46 private String errorCode; field in class:WorkflowException
54 * Instead this constructor provides Resource Bundle name and errorCode
58 * @param errorCode Key to resource bundle. You can use
59 * <code>String localizedStr = rb.getString(errorCode)</code>
64 public WorkflowException(String errorCode, Object... args) { argument
65 this.errorCode = errorCode;
95 return errorCode;
124 if (errorCode == null) {
134 String mid = bundle.getString (errorCode);
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/
H A DNameAlreadyExistsException.java62 * @param errorCode error code to use access the resource bundle
67 public NameAlreadyExistsException(String rbName,String errorCode, argument
70 super(rbName,errorCode,args,null);
81 * @param errorCode error code to use access the resource bundle
87 public NameAlreadyExistsException(String rbName,String errorCode, argument
90 super(rbName,errorCode,args,t);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/idm/
H A DPasswordPolicyException.java39 * @param errorCode the error code
42 public PasswordPolicyException(ResultCode resultCode, String errorCode, Object... args) { argument
43 super(IdRepoBundle.BUNDLE_NAME, errorCode, String.valueOf(resultCode.intValue()), args);
65 * @param errorCode the error code
68 public PasswordPolicyException(String errorCode, Object[] args) { argument
69 super(IdRepoBundle.BUNDLE_NAME, errorCode, args);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/
H A DNameAlreadyExistsException.java62 * @param errorCode error code to use access the resource bundle
67 public NameAlreadyExistsException(String rbName,String errorCode, argument
70 super(rbName,errorCode,args,null);
81 * @param errorCode error code to use access the resource bundle
87 public NameAlreadyExistsException(String rbName,String errorCode, argument
90 super(rbName,errorCode,args,t);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/service/
H A DAuthException.java44 * @param errorCode Key of the error message in resource bundle.
47 public AuthException(String errorCode, Object[] args) { argument
48 super(bundleName, errorCode, args);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/common/
H A DL10NMessageImpl.java55 * provides Resource Bundle name and errorCode for correctly locating the
62 * @param errorCode
65 * rb.getString(errorCode)
69 public L10NMessageImpl(String rbName, String errorCode, Object args[]) { argument
71 this.errorCode = errorCode;
81 * bundleName,errorCode and args are extracted from throwable
88 this.errorCode = lex.getErrorCode();
103 if (errorCode == null) {
110 String mid = bundle.getString(errorCode);
169 private String errorCode; field in class:L10NMessageImpl
[all...]
/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 DIdRepoDuplicateObjectException.java39 * @param errorCode
42 * String localizedStr = rb.getString(errorCode)</code>.
46 private IdRepoDuplicateObjectException(String rbName, String errorCode, Object[] args) { argument
47 super(rbName, errorCode, args);
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/upgrade/
H A DUpgradeException.java47 * @param errorCode Key to resource bundle. You can use
50 * String localizedStr = rb.getString(errorCode);
56 public UpgradeException(String rbName, String errorCode, Object[] args) { argument
57 super(rbName, errorCode, args);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/plugin/datastore/
H A DDataStoreProviderException.java74 * @param errorCode Key to resource bundle. You can use
77 * String localizedStr = rb.getString(errorCode);
85 String errorCode,
88 super(rbName, errorCode, args);
83 DataStoreProviderException( String rbName, String errorCode, Object[] args) argument
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/plugin/log/
H A DLogException.java75 * @param errorCode Key to resource bundle. You can use
78 * String localizedStr = rb.getString(errorCode);
84 public LogException(String rbName,String errorCode,Object[] args) { argument
85 super(rbName, errorCode, args);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/common/
H A DSAML2Exception.java53 * @param errorCode Key to resource bundle. You can use
56 * String localizedStr = rb.getString(errorCode);
62 public SAML2Exception(String rbName, String errorCode, Object[] args) { argument
63 super(rbName, errorCode, args);
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/shared/locale/
H A DL10NMessageImpl.java46 private String errorCode; field in class:L10NMessageImpl
62 * provides Resource Bundle name and errorCode for correctly locating the
68 * @param errorCode Key to resource bundle. You can use
71 * String localizedStr = rb.getString(errorCode);
75 public L10NMessageImpl(String rbName, String errorCode, Object args[]) { argument
77 this.errorCode = errorCode;
87 * bundleName,errorCode and args are extracted from throwable
95 this.errorCode = lex.getErrorCode();
109 if (errorCode
[all...]
/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/liberty/ws/authnsvc/
H A DAuthnSvcException.java69 * @param errorCode Key to resource bundle. You can use
72 * String localizedStr = rb.getString(errorCode);
78 public AuthnSvcException(String rbName, String errorCode, Object[] args) { argument
79 super(rbName, errorCode, args);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/disco/
H A DDiscoveryException.java66 * @param errorCode Key to resource bundle. You can use
69 * String localizedStr = rb.getString(errorCode);
75 public DiscoveryException(String rbName, String errorCode, Object[] args) { argument
76 super(rbName, errorCode, args);
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/shared/locale/
H A DL10NMessageImpl.java46 private String errorCode; field in class:L10NMessageImpl
62 * provides Resource Bundle name and errorCode for correctly locating the
68 * @param errorCode Key to resource bundle. You can use
71 * String localizedStr = rb.getString(errorCode);
75 public L10NMessageImpl(String rbName, String errorCode, Object args[]) { argument
77 this.errorCode = errorCode;
87 * bundleName,errorCode and args are extracted from throwable
95 this.errorCode = lex.getErrorCode();
109 if (errorCode
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/service/
H A DAuthException.java44 * @param errorCode Key of the error message in resource bundle.
47 public AuthException(String errorCode, Object[] args) { argument
48 super(bundleName, errorCode, args);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/common/
H A DL10NMessageImpl.java55 * provides Resource Bundle name and errorCode for correctly locating the
62 * @param errorCode
65 * rb.getString(errorCode)
69 public L10NMessageImpl(String rbName, String errorCode, Object args[]) { argument
71 this.errorCode = errorCode;
81 * bundleName,errorCode and args are extracted from throwable
88 this.errorCode = lex.getErrorCode();
103 if (errorCode == null) {
110 String mid = bundle.getString(errorCode);
169 private String errorCode; field in class:L10NMessageImpl
[all...]

Completed in 134 milliseconds

1234567891011>>