Module io.inverno.mod.security
Class UserRepositoryException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.inverno.mod.security.SecurityException
io.inverno.mod.security.authentication.user.UserRepositoryException
- All Implemented Interfaces:
- Serializable
Thrown to indicate an error while accessing a user repository.
- Since:
- 1.5
- Author:
- Jeremy Kuhn
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionCreates a user repository exception.UserRepositoryException(String message) Creates a user repository exception with the specified message.UserRepositoryException(String message, Throwable cause) Creates a user repository exception with the specified message and cause.UserRepositoryException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) Creates a user repository exception with the specified message, cause, suppression enabled or disabled and writable stack trace enabled or disabled.UserRepositoryException(Throwable cause) Creates a user repository exception with the specified cause.
- 
Method SummaryMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
UserRepositoryExceptionpublic UserRepositoryException()Creates a user repository exception. 
- 
UserRepositoryExceptionCreates a user repository exception with the specified message. - Parameters:
- message- the message
 
- 
UserRepositoryExceptionCreates a user repository exception with the specified cause. - Parameters:
- cause- the cause
 
- 
UserRepositoryExceptionCreates a user repository exception with the specified message and cause. - Parameters:
- message- the message
- cause- the cause
 
- 
UserRepositoryExceptionpublic UserRepositoryException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) Creates a user repository exception with the specified message, cause, suppression enabled or disabled and writable stack trace enabled or disabled. - Parameters:
- message- the message
- cause- the cause
- enableSuppression- true to enable suppression, false otherwise
- writableStackTrace- true to make the stack trace writable, false otherwise
 
 
-