Package org.genesys.blocks.security
Class NoUserFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.genesys.blocks.security.UserException
-
- org.genesys.blocks.security.NoUserFoundException
-
- All Implemented Interfaces:
Serializable
public class NoUserFoundException extends UserException
The Class NoUserFoundException.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NoUserFoundException()Instantiates a new no user found exception.NoUserFoundException(long modelId)Instantiates a new no user found exception.NoUserFoundException(String message)Instantiates a new no user found exception.NoUserFoundException(String message, Throwable cause)Instantiates a new no user found exception.NoUserFoundException(Throwable cause)Instantiates a new no user found exception.NoUserFoundException(Throwable cause, long modelId)Instantiates a new no user found exception.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetModelId()Gets the model id.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
NoUserFoundException
public NoUserFoundException()
Instantiates a new no user found exception.
-
NoUserFoundException
public NoUserFoundException(String message)
Instantiates a new no user found exception.- Parameters:
message- the message
-
NoUserFoundException
public NoUserFoundException(String message, Throwable cause)
Instantiates a new no user found exception.- Parameters:
message- the messagecause- the cause
-
NoUserFoundException
public NoUserFoundException(Throwable cause)
Instantiates a new no user found exception.- Parameters:
cause- the cause
-
NoUserFoundException
public NoUserFoundException(long modelId)
Instantiates a new no user found exception.- Parameters:
modelId- the model id
-
NoUserFoundException
public NoUserFoundException(Throwable cause, long modelId)
Instantiates a new no user found exception.- Parameters:
cause- the causemodelId- the model id
-
-