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
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())
super(message, th);
|