FileDocCategorySizeDatePackage
DuplicateFactoryRegistrationException.javaAPI DocGlassfish v2 API3358Fri May 04 22:35:28 BST 2007com.sun.appserv.ha.spi

DuplicateFactoryRegistrationException

public class DuplicateFactoryRegistrationException extends RuntimeException
This exception is thrown when an attempt to register a factory is made for a persistence type that is already registered.

Fields Summary
Constructors Summary
public DuplicateFactoryRegistrationException()
Creates a DuplicateFactoryRegistrationException with null as its detail message. The cause is not initialized, and may subsequently be initialized by a call to Throwable.initCause(java.lang.Throwable).


    
public DuplicateFactoryRegistrationException(String message)
constructs a DuplicateFactoryRegistrationException with the specified detail message

param
message the detail message. The detail message is saved for later retrieval by Throwable.getMessage() method.

        super(message);
    
public DuplicateFactoryRegistrationException(String message, Throwable th)
Constructs a new DuplicateFactoryRegistrationException exception with the specified cause and a detail message of (cause==null ? null : cause.toString())

param
message the detail message. The detail message is saved for
param
th the cause

        super(message, th);
    
Methods Summary