Constructors Summary |
---|
public JDOUserException()Creates a new JDOUserException without detail message.
|
public JDOUserException(String msg)Constructs a new JDOUserException with the specified detail message.
super(msg);
|
public JDOUserException(String msg, Exception nested)Constructs a new JDOUserException with the specified detail message
and nested Exception.
super(msg, nested);
|
public JDOUserException(String msg, Object[] failed)Constructs a new JDOUserException with the specified detail message
and failed object array.
super(msg, failed);
|
public JDOUserException(String msg, Exception nested, Object[] failed)Constructs a new JDOUserException with the specified detail message,
nested exception, and failed object array.
super(msg, nested, failed);
|