FileDocCategorySizeDatePackage
JDOCanRetryException.javaAPI DocGlassfish v2 API3506Fri May 04 22:34:54 BST 2007com.sun.jdo.api.persistence.support

JDOCanRetryException

public class JDOCanRetryException extends JDOException
author
clr
version
0.1

Fields Summary
Constructors Summary
public JDOCanRetryException()
Creates a new JDOCanRetryException without detail message.

  
public JDOCanRetryException(String msg)
Constructs a new JDOCanRetryException with the specified detail message.

param
msg the detail message.

    super(msg);
  
public JDOCanRetryException(String msg, Exception nested)
Constructs a new JDOCanRetryException with the specified detail message and nested Exception.

param
msg the detail message.
param
nested the nested Exception.

    super(msg, nested);
  
public JDOCanRetryException(String msg, Object[] failed)
Constructs a new JDOCanRetryException with the specified detail message and failed object array.

param
msg the detail message.
param
failed the 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.

param
msg the detail message.
param
nested the nested Exception.
param
failed the failed object array.

    super(msg, nested, failed);
  
Methods Summary