Package org.glassfish.ha.store.spi
Class DuplicateFactoryRegistrationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.glassfish.ha.store.spi.DuplicateFactoryRegistrationException
-
- All Implemented Interfaces:
Serializable
public class DuplicateFactoryRegistrationException extends RuntimeException
- Author:
- bhavanishankar@dev.java.net
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DuplicateFactoryRegistrationException()Creates a DuplicateFactoryRegistrationException with null as its detail message.DuplicateFactoryRegistrationException(String message)constructs a DuplicateFactoryRegistrationException with the specified detail messageDuplicateFactoryRegistrationException(String message, Throwable t)Constructs a new DuplicateFactoryRegistrationException exception with the specified cause and a detail message of (cause==null ? null : cause.toString())
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
DuplicateFactoryRegistrationException
public DuplicateFactoryRegistrationException()
Creates a DuplicateFactoryRegistrationException with null as its detail message. The cause is not initialized, and may subsequently be initialized by a call toThrowable.initCause(java.lang.Throwable).
-
DuplicateFactoryRegistrationException
public DuplicateFactoryRegistrationException(String message)
constructs a DuplicateFactoryRegistrationException with the specified detail message- Parameters:
message- the detail message. The detail message is saved for later retrieval byThrowable.getMessage()method.
-
DuplicateFactoryRegistrationException
public DuplicateFactoryRegistrationException(String message, Throwable t)
Constructs a new DuplicateFactoryRegistrationException exception with the specified cause and a detail message of (cause==null ? null : cause.toString())- Parameters:
message- the detail message. The detail message is saved fort- the cause
-
-