Searched defs:message (Results 226 - 250 of 1477) sorted by relevance

1234567891011>>

/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/admin/client/
H A DAdminSecurityException.java52 * Create a security exception with a message and cause.
54 * @param message
55 * The message.
59 protected AdminSecurityException(LocalizableMessage message, Throwable cause) { argument
60 super(message, cause);
66 * Create a security exception with a message.
68 * @param message
69 * The message.
71 protected AdminSecurityException(LocalizableMessage message) { argument
72 super(message);
[all...]
H A DAuthenticationException.java53 * Creates an authentication exception with a default message.
63 * message.
75 * Create an authentication exception with a message and cause.
77 * @param message
78 * The message.
82 public AuthenticationException(LocalizableMessage message, Throwable cause) { argument
83 super(message, cause);
89 * Create an authentication exception with a message.
91 * @param message
92 * The message
94 AuthenticationException(LocalizableMessage message) argument
[all...]
H A DAuthenticationNotSupportedException.java54 * message.
64 * and a default message.
76 * Create an authentication not supported exception with a message
79 * @param message
80 * The message.
84 public AuthenticationNotSupportedException(LocalizableMessage message, Throwable cause) { argument
85 super(message, cause);
91 * Create an authentication not supported exception with a message.
93 * @param message
94 * The message
96 AuthenticationNotSupportedException(LocalizableMessage message) argument
[all...]
H A DAuthorizationException.java54 * Create an authorization exception with a default message.
64 * message.
76 * Create an authorization exception with a message and cause.
78 * @param message
79 * The message.
83 public AuthorizationException(LocalizableMessage message, Throwable cause) { argument
84 super(message, cause);
90 * Create an authorization exception with a message.
92 * @param message
93 * The message
95 AuthorizationException(LocalizableMessage message) argument
[all...]
H A DCommunicationException.java55 * Create a communication exception with a default message.
65 * message.
78 * Create a communication exception with a message and cause.
80 * @param message
81 * The message.
85 public CommunicationException(LocalizableMessage message, Throwable cause) { argument
86 super(message, cause);
92 * Create a communication exception with a message.
94 * @param message
95 * The message
97 CommunicationException(LocalizableMessage message) argument
[all...]
H A DConcurrentModificationException.java55 * message.
65 * default message.
77 * Create a concurrent modification exception with a message and
80 * @param message
81 * The message.
85 public ConcurrentModificationException(LocalizableMessage message, Throwable cause) { argument
86 super(message, cause);
92 * Create a concurrent modification exception with a message.
94 * @param message
95 * The message
97 ConcurrentModificationException(LocalizableMessage message) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/authorization/dseecompat/
H A DAciException.java50 * Constructs a new exception with <code>null</code> as its detail message.
59 * Creates a new ACI exception with the provided message.
61 * @param message The message to use for this ACI exception.
63 public AciException(LocalizableMessage message) { argument
64 super(message);
68 * Creates a new ACI exception with the provided message and root
71 * @param message The message that explains the problem that occurred.
75 public AciException(LocalizableMessage message, Throwabl argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/spi/
H A DReadOnlyStorageException.java35 /** Constructor with default error message. */
42 * Constructor with a message and a cause.
44 * @param message
45 * the exception message
49 public ReadOnlyStorageException(String message, Throwable cause) argument
51 super(message, cause);
55 * Constructor with a message.
57 * @param message
58 * the exception message
60 public ReadOnlyStorageException(String message) argument
[all...]
H A DStorageInUseException.java36 * Constructor with a message and a cause.
38 * @param message
39 * the exception message
43 public StorageInUseException(String message, Throwable cause) argument
45 super(message, cause);
49 * Constructor with a message.
51 * @param message
52 * the exception message
54 public StorageInUseException(String message) argument
56 super(message);
[all...]
H A DStorageRuntimeException.java36 * Constructor with a message.
38 * @param message
39 * the exception message
41 public StorageRuntimeException(final String message) argument
43 super(message);
47 * Constructor with a message and a cause.
49 * @param message
50 * the exception message
54 public StorageRuntimeException(final String message, final Throwable cause) argument
56 super(message, caus
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/config/
H A DConfigException.java62 * Creates a new configuration exception with the provided message.
64 * @param message The message to use for this configuration exception.
66 public ConfigException(LocalizableMessage message) argument
68 super(message);
74 * Creates a new configuration exception with the provided message and
77 * @param message The message to use for this configuration exception.
81 public ConfigException(LocalizableMessage message, Throwable cause) argument
83 super(message, caus
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/soapbinding/
H A DSOAPBindingException.java50 * @param message the Exception message.
52 public SOAPBindingException(String message) { argument
53 super(message);
H A DSOAPFaultException.java41 private Message message = null; field in class:SOAPFaultException
46 * @param message a <code>Message</code> containing <code>SOAPFault</code>.
48 public SOAPFaultException(Message message) { argument
49 this.message = message;
59 return message;
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/profile/
H A DUnableToRedirectException.java40 * @param message a message describing the cause of the exception
42 public UnableToRedirectException(String message) { argument
43 super(message);
48 * @param message a message describing the cause of the exception
51 public UnableToRedirectException(String message, Throwable cause) { argument
52 super(message, cause);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/common/
H A DXACMLException.java36 * This class also handles message localization in XACML exceptions.
45 * message.
47 * @param message message for this exception. This message can be later
51 public XACMLException(String message) { argument
52 super(message);
/forgerock/openam-v13/openam-oauth2-common/oauth2-core/src/main/java/org/forgerock/oauth2/core/exceptions/
H A DAccessDeniedException.java29 * Constructs a new AccessDeniedException with specified message.
32 * @param message The reason for the exception.
34 public AccessDeniedException(final String message) { argument
35 this(message, UrlLocation.QUERY);
39 * Constructs a new AccessDeniedException with message from the specified cause.
48 * Constructs a new AccessDeniedException with specified message.
50 * @param message The reason for the exception.
52 public AccessDeniedException(final String message, final UrlLocation parameterLocation) { argument
53 super(400, "access_denied", message, parameterLocation);
H A DBadRequestException.java27 * Constructs a new BadRequestException with the specified message.
29 * @param message The reason for the exception.
31 public BadRequestException(final String message) { argument
32 super(400, "bad_request", message);
36 * Constructs a new BadRequestException with the specified message and code.
39 * @param message The reason for the exception.
41 public BadRequestException(final String error, final String message) { argument
42 super(400, error, message);
H A DInvalidClientException.java27 * Constructs a new InvalidClientException, with the default message.
35 * Constructs a new InvalidClientException, with the specified message.
37 * @param message The reason for the exception.
39 InvalidClientException(final String message) { argument
40 this(400, "invalid_client", message);
43 protected InvalidClientException(final int statusCode, final String title, final String message) { argument
44 super(statusCode, title, message);
H A DInvalidRequestException.java29 * Constructs a new InvalidRequestException with the default message.
36 * Constructs a new InvalidRequestException with the specified message.
39 * @param message The reason for the exception.
41 public InvalidRequestException(final String message) { argument
42 this(message, UrlLocation.QUERY);
46 * Constructs a new InvalidRequestException with the specified message.
48 * @param message The reason for the exception.
51 public InvalidRequestException(final String message, final UrlLocation parameterLocation) { argument
52 super(400, "invalid_request", message, parameterLocation);
H A DInvalidScopeException.java36 * Constructs a new InvalidScopeException with the default message.
43 * Constructs a new InvalidScopeException with the specified message.
46 * @param message The reason for the exception.
48 public InvalidScopeException(final String message) { argument
49 this(message, UrlLocation.QUERY);
53 * Constructs a new InvalidScopeException with the specified message.
55 * @param message The reason for the exception.
58 public InvalidScopeException(final String message, final UrlLocation parameterLocation) { argument
59 super(400, "invalid_scope", message, parameterLocation);
64 * @param message Th
68 create(final String message, final OAuth2Request request) argument
[all...]
H A DNotFoundException.java29 * Constructs a new NotFoundException with the specified message.
31 * @param message The reason for the exceptioin.
33 public NotFoundException(final String message) { argument
34 super(404, "not_found", message);
H A DServerException.java27 * Constructs a new ServerException with the default message.
34 * Constructs a new ServerException with the specified message.
36 * @param message The reason for the exception.
38 public ServerException(final String message) { argument
39 super(400, "server_error", message);
43 * Constructs a new ServerException with the message from the specified cause.
H A DUnsupportedResponseTypeException.java29 * Constructs a new UnsupportedResponseTypeException instance with the specified message.
31 * @param message The reason for the exception.
33 public UnsupportedResponseTypeException(final String message) { argument
34 this(message, OAuth2Constants.UrlLocation.QUERY);
38 * Constructs a new UnsupportedResponseTypeException instance with the specified message.
40 * @param message The reason for the exception.
43 public UnsupportedResponseTypeException(final String message, final OAuth2Constants.UrlLocation parameterLocation) { argument
44 super(400, "unsupported_response_type", message, parameterLocation);
/forgerock/openam-v13/openam-radius/openam-radius-server/src/main/java/org/forgerock/openam/radius/server/
H A DRadiusLifecycleException.java28 * @param message - the detail message. The detail message is saved for later retrieval by the
31 public RadiusLifecycleException(String message) { argument
32 super(message);
38 * @param message - the detail message. The detail message is saved for later retrieval by the
43 public RadiusLifecycleException(String message, Throwable cause) { argument
44 super(message, caus
[all...]
/forgerock/openam-v13/openam-radius/openam-radius-server/src/main/java/org/forgerock/openam/radius/server/audit/
H A DRadiusAuditLoggingException.java25 * Constructs a new RadiusAuditLoggingException with the specified detail message. The cause is not initialized, and
28 * @param message the detail message. The detail message is saved for later retrieval by the getMessage() method.
30 public RadiusAuditLoggingException(String message) { argument
31 super(message);
35 * Constructs a new exception with the specified detail message and cause. Note that the detail message associated
36 * with cause is not automatically incorporated in this exception's detail message.
38 * @param message th
42 RadiusAuditLoggingException(String message, Throwable cause) argument
[all...]

Completed in 85 milliseconds

1234567891011>>