Searched refs:error (Results 1 - 25 of 3353) sorted by relevance

1234567891011>>

/forgerock/openam-v13/openam-shared/src/main/java/org/forgerock/openam/federation/saml2/
H A DSAML2TokenRepositoryException.java28 * @param error The detail message.
31 public SAML2TokenRepositoryException(String error, Throwable cause) { argument
32 super(error, cause);
38 * @param error The detail message.
40 public SAML2TokenRepositoryException(String error) { argument
41 super(error);
/forgerock/openam/openam-shared/src/main/java/org/forgerock/openam/federation/saml2/
H A DSAML2TokenRepositoryException.java28 * @param error The detail message.
31 public SAML2TokenRepositoryException(String error, Throwable cause) { argument
32 super(error, cause);
38 * @param error The detail message.
40 public SAML2TokenRepositoryException(String error) { argument
41 super(error);
/forgerock/authenticator-ios-v2/ForgeRock-Authenticator/
H A DFRADatabaseConfiguration.h24 * @param error If an error occurs, upon returns contains an NSError object that describes the problem. If you are not interested in possible errors, you may pass in NULL.
27 -(NSString *)getDatabasePathWithError:(NSError *__autoreleasing *)error;
32 * @param error If an error occurs, upon returns contains an NSError object that describes the problem. If you are not interested in possible errors, you may pass in NULL.
35 +(BOOL)parentFoldersFor:(NSString *)folder error:(NSError *__autoreleasing *)error;
H A DFRAIdentityDatabaseSQLiteOperations.h41 * @param error If an error occurs, upon returns contains an NSError object that describes the problem. If you are not interested in possible errors, you may pass in NULL.
44 - (BOOL)insertIdentity:(FRAIdentity *)identity error:(NSError *__autoreleasing *)error;
49 * @param error If an error occurs, upon returns contains an NSError object that describes the problem. If you are not interested in possible errors, you may pass in NULL.
52 - (BOOL)deleteIdentity:(FRAIdentity *)identity error:(NSError *__autoreleasing *)error;
60 * @param error If an error occur
[all...]
H A DFRAIdentityDatabase.h59 * @param error If an error occurs, upon returns contains an NSError object that describes the problem. If you are not interested in possible errors, you may pass in NULL.
60 * @return NO if there was an error whilst processing. YES if the operation completed successfully.
62 - (BOOL)insertIdentity:(FRAIdentity *)identity error:(NSError *__autoreleasing *)error;
67 * @param error If an error occurs, upon returns contains an NSError object that describes the problem. If you are not interested in possible errors, you may pass in NULL.
68 * @return NO if there was an error whilst processing. YES if the operation completed successfully.
70 - (BOOL)deleteIdentity:(FRAIdentity *)identity error:(NSError *__autoreleasing *)error;
[all...]
H A DFRAFMDatabaseFactory.m23 -(FMDatabase *)createDatabaseFor:(NSString *)path withError:(NSError *__autoreleasing *)error {
25 if (!database && error) {
26 *error = [FRAError createErrorForFilePath:path reason:@"Could not open database"];
H A DFRAMechanismReaderAction.m45 NSError *error;
46 FRAMechanism *mechanism = [_mechanismReader parseFromString:code handler:[self mechanismReadCallback] error:&error];
52 if (error && error.code == FRADuplicateMechanism) {
53 [self handleDuplicateMechanism:code error:&error];
58 [self showAlert:error];
93 * @param error If an error occur
[all...]
H A DFRAIdentityDatabase.m58 - (BOOL)insertIdentity:(FRAIdentity *)identity error:(NSError *__autoreleasing *)error {
60 if (![self doInsertIdentity:identity andCollectStateChanges:stateChanges withError:error]) {
67 - (BOOL)doInsertIdentity:(FRAIdentity *)identity andCollectStateChanges:(NSMutableDictionary *)stateChanges withError:(NSError *__autoreleasing *)error {
69 if (error) {
71 *error = [FRAError createError:reason];
76 if (![self doInsertMechanism:mechanism andCollectStateChanges:stateChanges withError:error]) {
80 if (![self.sqlOperations insertIdentity:identity error:error]) {
88 - (BOOL)deleteIdentity:(FRAIdentity *)identity error
[all...]
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/sm/datalayer/store/
H A DServerException.java24 public ServerException(String error, Throwable cause) { argument
25 super(error, cause);
28 public ServerException(String error) { argument
29 super(error);
H A DNotFoundException.java22 public NotFoundException(String error) { argument
23 super(error);
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/sm/datalayer/store/
H A DServerException.java24 public ServerException(String error, Throwable cause) { argument
25 super(error, cause);
28 public ServerException(String error) { argument
29 super(error);
/forgerock/openam-v13/openam-oauth2-common/oauth2-core/src/main/java/org/forgerock/oauth2/core/exceptions/
H A DOAuth2Exception.java29 private final String error; field in class:OAuth2Exception
33 * Constructs a new OAuth2Exception with specified status code, error and description.
37 * @param error The error/name of the exception.
40 public OAuth2Exception(final int statusCode, final String error, final String description) { argument
41 this(statusCode, error, description, UrlLocation.QUERY);
45 * Constructs a new OAuth2Exception with specified status code, error and description.
48 * @param error The error/name of the exception.
52 public OAuth2Exception(final int statusCode, final String error, fina argument
[all...]
H A DBadRequestException.java38 * @param error The error code.
41 public BadRequestException(final String error, final String message) { argument
42 super(400, error, message);
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/oauth2/core/exceptions/
H A DOAuth2Exception.java29 private final String error; field in class:OAuth2Exception
33 * Constructs a new OAuth2Exception with specified status code, error and description.
37 * @param error The error/name of the exception.
40 public OAuth2Exception(final int statusCode, final String error, final String description) { argument
41 this(statusCode, error, description, UrlLocation.QUERY);
45 * Constructs a new OAuth2Exception with specified status code, error and description.
48 * @param error The error/name of the exception.
52 public OAuth2Exception(final int statusCode, final String error, fina argument
[all...]
H A DBadRequestException.java38 * @param error The error code.
41 public BadRequestException(final String error, final String message) { argument
42 super(400, error, message);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/admin/ads/
H A DADSContextException.java41 /** The enumeration containing the different error types. */
52 /** An access permission error. */
74 /** Unexpected error (potential bug). */
78 private final ErrorType error; field in class:ADSContextException
82 * Creates an ADSContextException of the given error type.
83 * @param error the error type.
85 ADSContextException(ErrorType error) argument
87 this(error, null);
91 * Creates an ADSContextException of the given error typ
96 ADSContextException(ErrorType error, Throwable x) argument
112 ADSContextException(ErrorType error, LocalizableMessage msg, Throwable cause) argument
148 getMessage(ErrorType error, Throwable x) argument
[all...]
/forgerock/authenticator-ios-v2/unit-tests/
H A DFRAErrorTest.m24 static NSString * const ERROR_REASON = @"error reason";
46 NSString *errorMessage = @"error message";
52 NSError *error = [FRAError createErrorForLastFailure:mockDatabase];
54 XCTAssertEqualObjects(error.domain, ERROR_DOMAIN);
55 XCTAssertEqual(error.code, errorCode);
56 XCTAssertEqualObjects([error.userInfo valueForKey:NSLocalizedDescriptionKey], errorMessage);
61 NSError *error = [FRAError createErrorForLastFailure:nil];
63 XCTAssertEqualObjects(error.domain, ERROR_DOMAIN);
64 XCTAssertEqual(error.code, -1);
65 XCTAssertEqualObjects([error
[all...]
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/errors/
H A DIdentityServicesExceptionMappingHandler.java30 public IdServicesException handleError(Context context, String debug, Request request, IdRepoException error) { argument
31 return handleError(error);
35 public IdServicesException handleError(String debug, Request request, IdRepoException error) { argument
36 return handleError(error);
40 public IdServicesException handleError(Context context, Request request, IdRepoException error) { argument
41 return handleError(error);
45 public IdServicesException handleError(Request request, IdRepoException error) { argument
46 return handleError(error);
50 public IdServicesException handleError(IdRepoException error) { argument
55 code = Integer.valueOf(error
[all...]
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/errors/
H A DIdentityServicesExceptionMappingHandler.java30 public IdServicesException handleError(Context context, String debug, Request request, IdRepoException error) { argument
31 return handleError(error);
35 public IdServicesException handleError(String debug, Request request, IdRepoException error) { argument
36 return handleError(error);
40 public IdServicesException handleError(Context context, Request request, IdRepoException error) { argument
41 return handleError(error);
45 public IdServicesException handleError(Request request, IdRepoException error) { argument
46 return handleError(error);
50 public IdServicesException handleError(IdRepoException error) { argument
55 code = Integer.valueOf(error
[all...]
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/cts/exceptions/
H A DCoreTokenException.java34 public CoreTokenException(String error, Throwable cause) { argument
35 super(wrapMessage(error), cause);
38 public CoreTokenException(String error) { argument
39 super(wrapMessage(error));
42 public CoreTokenException(String error, Token token) { argument
43 super(wrapMessage(error, token));
46 public CoreTokenException(String error, Token token, Throwable cause) { argument
47 super(wrapMessage(error, token), cause);
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/cts/utils/blob/
H A DTokenStrategyFailedException.java28 public TokenStrategyFailedException(String error, Throwable e) { argument
29 super(error, e);
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/sm/datalayer/api/
H A DDataLayerException.java34 public DataLayerException(String error, Throwable cause) { argument
35 super(wrapMessage(error), cause);
38 public DataLayerException(String error) { argument
39 super(wrapMessage(error));
42 public DataLayerException(String error, Token token) { argument
43 super(wrapMessage(error, token));
46 public DataLayerException(String error, Token token, Throwable cause) { argument
47 super(wrapMessage(error, token), cause);
H A DDataLayerRuntimeException.java34 public DataLayerRuntimeException(String error, Throwable cause) { argument
35 super(wrapMessage(error), cause);
38 public DataLayerRuntimeException(String error) { argument
39 super(wrapMessage(error));
42 public DataLayerRuntimeException(String error, Token token) { argument
43 super(wrapMessage(error, token));
46 public DataLayerRuntimeException(String error, Token token, Throwable cause) { argument
47 super(wrapMessage(error, token), cause);
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/cts/exceptions/
H A DCoreTokenException.java34 public CoreTokenException(String error, Throwable cause) { argument
35 super(wrapMessage(error), cause);
38 public CoreTokenException(String error) { argument
39 super(wrapMessage(error));
42 public CoreTokenException(String error, Token token) { argument
43 super(wrapMessage(error, token));
46 public CoreTokenException(String error, Token token, Throwable cause) { argument
47 super(wrapMessage(error, token), cause);
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/cts/utils/blob/
H A DTokenStrategyFailedException.java28 public TokenStrategyFailedException(String error, Throwable e) { argument
29 super(error, e);

Completed in 38 milliseconds

1234567891011>>