Klasse CredentialsException

Alle implementierten Schnittstellen:
Serializable

public class CredentialsException extends KernelRuntimeException implements Serializable
Thrown when there are insufficient user permissions to perform an operation.
Siehe auch:
  • Konstruktordetails

    • CredentialsException

      public CredentialsException()
      Constructs a CredentialsException with no detail message.
    • CredentialsException

      public CredentialsException(String message)
      Constructs a CredentialsException with the specified detail message.
      Parameter:
      message - The detail message.
    • CredentialsException

      public CredentialsException(String message, Throwable cause)
      Constructs a CredentialsException with the specified detail message and cause.
      Parameter:
      message - The detail message.
      cause - The exception's cause.
    • CredentialsException

      public CredentialsException(Throwable cause)
      Constructs a CredentialsException with the specified cause and a detail message of (cause == null ? null : cause.toString()) (which typically contains the class and detail message of cause).
      Parameter:
      cause - The exception's cause.