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

public class UserNotFoundException extends RuntimeException
Represents an exception that is thrown when a User cannot be located.
See Also:
  • Constructor Details

    • UserNotFoundException

      public UserNotFoundException(String msg)
      Constructs a new UserNotFoundException with the specified detail message.
      Parameters:
      msg - the detail message. The detail message is saved for later retrieval by the Throwable.getMessage() method.
    • UserNotFoundException

      public UserNotFoundException(String msg, Throwable cause)
      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 the Throwable.getMessage() method.
      cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)