FileDocCategorySizeDatePackage
JDOUserException.javaAPI DocGlassfish v2 API3481Fri May 04 22:34:56 BST 2007com.sun.jdo.api.persistence.support

JDOUserException

public class JDOUserException extends JDOCanRetryException
author
Craig Russell
version
0.1

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

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

param
msg the detail message.

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

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

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

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

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

    super(msg, nested, failed);
  
Methods Summary