Constructors Summary |
---|
public JDOMetaDataUserException()Constructs an JDOMetaDataUserException with no detail
message.
this.nested = null;
|
public JDOMetaDataUserException(String msg)Constructs an JDOMetaDataUserException with the specified
detail message.
super(msg);
this.nested = null;
|
public JDOMetaDataUserException(Throwable nested)Constructs an JDOMetaDataUserException with an optional
nested exception.
super("nested exception: " + nested);//NOI18N
this.nested = nested;
|
public JDOMetaDataUserException(String msg, Throwable nested)Constructs an JDOMetaDataUserException with the specified
detail message and an optional nested exception.
super(msg);
this.nested = nested;
|