Searched refs:errorCode (Results 26 - 50 of 357) sorted by relevance

1234567891011>>

/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/sdk/remote/
H A DAMRemoteException.java39 String errorCode; field in class:AMRemoteException
41 public AMRemoteException(String msg, String errorCode, int ldapErrorCode, argument
47 this.errorCode = errorCode;
51 return errorCode;
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/tools/dsreplication/
H A DReplicationCliException.java39 private ReplicationCliReturnCode errorCode; field in class:ReplicationCliException
44 * @param errorCode the error code associated with this exception.
48 ReplicationCliReturnCode errorCode,
52 this.errorCode = errorCode;
61 return errorCode;
47 ReplicationCliException(LocalizableMessage message, ReplicationCliReturnCode errorCode, Throwable cause) argument
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/sdk/remote/
H A DAMRemoteException.java39 String errorCode; field in class:AMRemoteException
41 public AMRemoteException(String msg, String errorCode, int ldapErrorCode, argument
47 this.errorCode = errorCode;
51 return errorCode;
/forgerock/openam/openam-core/src/main/java/com/sun/identity/common/
H A DSearchResults.java73 private final int errorCode; field in class:SearchResults
80 * @param errorCode Error Code.
82 public SearchResults(int count, Set<T> results, int errorCode) { argument
85 this.errorCode = errorCode;
116 return errorCode;
/forgerock/openam-v13/openam-rest/src/main/java/com/sun/identity/rest/
H A DRestException.java43 private int errorCode; field in class:RestException
51 * @param errorCode Error code.
53 public RestException(int errorCode) { argument
54 this.errorCode = errorCode;
61 * @param errorCode Error code.
64 public RestException(int errorCode, Object[] params) { argument
65 this.errorCode = errorCode;
73 * @param errorCode Erro
76 RestException(int errorCode, Throwable cause) argument
89 RestException(int errorCode, Object[] params, Throwable cause) argument
[all...]
/forgerock/openam/openam-rest/src/main/java/com/sun/identity/rest/
H A DRestException.java43 private int errorCode; field in class:RestException
51 * @param errorCode Error code.
53 public RestException(int errorCode) { argument
54 this.errorCode = errorCode;
61 * @param errorCode Error code.
64 public RestException(int errorCode, Object[] params) { argument
65 this.errorCode = errorCode;
73 * @param errorCode Erro
76 RestException(int errorCode, Throwable cause) argument
89 RestException(int errorCode, Object[] params, Throwable cause) argument
[all...]
/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 DRepoSearchResults.java70 protected int errorCode; field in class:RepoSearchResults
81 * @param errorCode
86 public RepoSearchResults(Set results, int errorCode, Map map, IdType type) { argument
88 this.errorCode = errorCode;
129 return errorCode;
/forgerock/openam/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 DRepoSearchResults.java70 protected int errorCode; field in class:RepoSearchResults
81 * @param errorCode
86 public RepoSearchResults(Set results, int errorCode, Map map, IdType type) { argument
88 this.errorCode = errorCode;
129 return errorCode;
/forgerock/openam-v13/openam-scripting/src/main/java/org/forgerock/openam/scripting/
H A DScriptException.java34 * @param errorCode The error code to use for the exception message.
38 public ScriptException(ScriptErrorCode errorCode, Throwable cause, String... arguments) { argument
39 super(RESOURCE_BUNDLE, errorCode.name(), arguments);
41 this.scriptErrorCode = errorCode;
46 * @param errorCode The error code to use for the exception message.
49 public ScriptException(ScriptErrorCode errorCode, String... arguments) { argument
50 this(errorCode, null, arguments);
65 * @param errorCode The error code to use for the exception message.
70 public static ScriptException createAndLogError(Logger logger, ScriptErrorCode errorCode, Throwable cause, argument
72 final ScriptException exception = new ScriptException(errorCode, caus
86 createAndLogDebug(Logger logger, ScriptErrorCode errorCode, Throwable cause, String... arguments) argument
101 createAndLogError(Logger logger, ScriptErrorCode errorCode, String... arguments) argument
115 createAndLogDebug(Logger logger, ScriptErrorCode errorCode, String... arguments) argument
[all...]
/forgerock/openam/openam-scripting/src/main/java/org/forgerock/openam/scripting/
H A DScriptException.java34 * @param errorCode The error code to use for the exception message.
38 public ScriptException(ScriptErrorCode errorCode, Throwable cause, String... arguments) { argument
39 super(RESOURCE_BUNDLE, errorCode.name(), arguments);
41 this.scriptErrorCode = errorCode;
46 * @param errorCode The error code to use for the exception message.
49 public ScriptException(ScriptErrorCode errorCode, String... arguments) { argument
50 this(errorCode, null, arguments);
65 * @param errorCode The error code to use for the exception message.
70 public static ScriptException createAndLogError(Logger logger, ScriptErrorCode errorCode, Throwable cause, argument
72 final ScriptException exception = new ScriptException(errorCode, caus
86 createAndLogDebug(Logger logger, ScriptErrorCode errorCode, Throwable cause, String... arguments) argument
101 createAndLogError(Logger logger, ScriptErrorCode errorCode, String... arguments) argument
115 createAndLogDebug(Logger logger, ScriptErrorCode errorCode, String... arguments) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/common/
H A DSearchResults.java81 private int errorCode; field in class:SearchResults
88 * @param errorCode Error Code.
90 public SearchResults(int count, Set results, int errorCode) { argument
93 this.errorCode = errorCode;
101 * @param errorCode Error Code.
104 public SearchResults(int count, Set results, int errorCode, Map map) { argument
107 this.errorCode = errorCode;
150 return errorCode;
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/config/
H A DAMConfigurationException.java53 * @param errorCode Key of the error message in the resource bundle.
55 public AMConfigurationException(String rbName, String errorCode) { argument
56 super(rbName, errorCode, (Object[])null);
63 * @param errorCode Key of the error message in the resource bundle.
66 public AMConfigurationException(String rbName, String errorCode, argument
68 super(rbName, errorCode, params);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/idm/plugins/files/
H A DFilesRepoEntryNotFoundException.java39 public FilesRepoEntryNotFoundException(String rbName, String errorCode, argument
41 super(rbName, errorCode, args);
44 public FilesRepoEntryNotFoundException(String msg, String errorCode) { argument
45 super(msg, errorCode);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/meta/
H A DSAML2MetaException.java44 * @param errorCode Key to resource bundle. You can use
47 * String localizedStr = rb.getString(errorCode);
53 public SAML2MetaException(String errorCode, Object[] args) { argument
54 super(SAML2MetaUtils.RESOURCE_BUNDLE_NAME, errorCode, args);
62 * @param errorCode Key to resource bundle. You can use
65 * String localizedStr = rb.getString(errorCode);
71 public SAML2MetaException(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/common/
H A DSystemConfigurationException.java44 * @param errorCode Key to resource bundle. You can use
47 * String localizedStr = rb.getString(errorCode);
53 public SystemConfigurationException(String errorCode, Object[] args) { argument
54 super(BUNDLE_NAME, errorCode, args);
62 * @param errorCode Key to resource bundle. You can use
65 * String localizedStr = rb.getString(errorCode);
71 public SystemConfigurationException(String rbName, String errorCode, argument
74 super(rbName, errorCode, 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/openam-core/src/main/java/com/sun/identity/authentication/config/
H A DAMConfigurationException.java53 * @param errorCode Key of the error message in the resource bundle.
55 public AMConfigurationException(String rbName, String errorCode) { argument
56 super(rbName, errorCode, (Object[])null);
63 * @param errorCode Key of the error message in the resource bundle.
66 public AMConfigurationException(String rbName, String errorCode, argument
68 super(rbName, errorCode, params);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/idm/plugins/files/
H A DFilesRepoEntryNotFoundException.java39 public FilesRepoEntryNotFoundException(String rbName, String errorCode, argument
41 super(rbName, errorCode, args);
44 public FilesRepoEntryNotFoundException(String msg, String errorCode) { argument
45 super(msg, errorCode);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/common/
H A DSystemConfigurationException.java44 * @param errorCode Key to resource bundle. You can use
47 * String localizedStr = rb.getString(errorCode);
53 public SystemConfigurationException(String errorCode, Object[] args) { argument
54 super(BUNDLE_NAME, errorCode, args);
62 * @param errorCode Key to resource bundle. You can use
65 * String localizedStr = rb.getString(errorCode);
71 public SystemConfigurationException(String rbName, String errorCode, argument
74 super(rbName, errorCode, args);
/forgerock/openam/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/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/meta/
H A DSAML2MetaException.java44 * @param errorCode Key to resource bundle. You can use
47 * String localizedStr = rb.getString(errorCode);
53 public SAML2MetaException(String errorCode, Object[] args) { argument
54 super(SAML2MetaUtils.RESOURCE_BUNDLE_NAME, errorCode, args);
62 * @param errorCode Key to resource bundle. You can use
65 * String localizedStr = rb.getString(errorCode);
71 public SAML2MetaException(String rbName, String errorCode, Object[] args) { argument
72 super(rbName, errorCode, args);
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/sdk/
H A DAMSearchResults.java75 protected int errorCode; field in class:AMSearchResults
84 * @param errorCode
89 public AMSearchResults(int count, Set results, int errorCode, Map map) { argument
92 this.errorCode = errorCode;
142 return errorCode;
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/sdk/
H A DAMSearchResults.java75 protected int errorCode; field in class:AMSearchResults
84 * @param errorCode
89 public AMSearchResults(int count, Set results, int errorCode, Map map) { argument
92 this.errorCode = errorCode;
142 return errorCode;

Completed in 108 milliseconds

1234567891011>>