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