Module one.jpro.platform.auth.core
Class UserNotFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
one.jpro.platform.auth.core.basic.UserNotFoundException
- All Implemented Interfaces:
Serializable
Represents an exception that is thrown when a
User cannot be located.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new UserNotFoundException with the specified detail message.UserNotFoundException(String msg, Throwable cause) Constructs a new UserNotFoundException with the specified detail message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
UserNotFoundException
Constructs a new UserNotFoundException with the specified detail message.- Parameters:
msg- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()method.
-
UserNotFoundException
Constructs a new UserNotFoundException with the specified detail message and cause.- Parameters:
msg- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()method.cause- the cause (which is saved for later retrieval by theThrowable.getCause()method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-