org.activemath.webapp.user
Class UserManagerException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.activemath.webapp.user.UserManagerException
- All Implemented Interfaces:
- Serializable
- Direct Known Subclasses:
- AccountManagerException, UsernameTakenException
public class UserManagerException
- extends Exception
- See Also:
- Serialized Form
UserManagerException
public UserManagerException(String message)
- Creates a new
UserManagerException with no
cause
- Parameters:
message - A message detailing a bit this Exception.
UserManagerException
public UserManagerException(Throwable t)
- Creates a new
UserManagerException based on the supplied
Throwable.
Used to propagate Exceptions to a higher level.
As no information in String form is supplied, this
UserManagerException's message will be initialized with
the supplied Throwable's message, and the cause will
be set to t.
- Parameters:
t - The Throwable that caused this UserManagerException.
UserManagerException
public UserManagerException(String message,
Throwable t)
- Creates a new
UserManagerException with the supplied
message and t as cause.
- Parameters:
message - A message detailing a bit this Exception.t - The Throwable that caused this UserManagerException.
getCause
public Throwable getCause()
- Overrides:
getCause in class Throwable