public class UserException extends OsidException
Constructor and Description |
---|
UserException(java.lang.String msg)
Constructs a
UserException with the specified
detail message. |
UserException(java.lang.String msg,
java.lang.Throwable t)
Constructs a
UserException with the specified
detail message and cause. |
UserException(java.lang.Throwable t)
Constructs a
UserException with the specified
cause and a detail message of
cause.toString() which typically contains the class and
detail message of cause . |
public UserException(java.lang.String msg)
UserException
with the specified
detail message. The error message string msg
can
later be retrieved by the getMessage() method of
Throwable
.msg
- the error messagepublic UserException(java.lang.String msg, java.lang.Throwable t)
UserException
with the specified
detail message and cause. The error message string msg
can
later be retrieved by the getMessage() method of
Throwable
.msg
- the error messaget
- the cause of the exceptionpublic UserException(java.lang.Throwable t)
UserException
with the specified
cause and a detail message of
cause.toString()
which typically contains the class and
detail message of cause
.t
- the cause of the exception