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

JDODataStoreException

public class JDODataStoreException extends JDOCanRetryException
author
Craig Russell
version
0.1

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

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

param
msg the detail message.

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

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

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

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

    super(msg, failed);
  
public JDODataStoreException(String msg, Exception nested, Object[] failed)
Constructs a new JDODataStoreException 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