Package net.sf.basedb.clients.web
Class DuplicateWizardException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
net.sf.basedb.clients.web.DuplicateWizardException
- All Implemented Interfaces:
Serializable
This exception is thrown when a plug-in configuration wizard
is open and the user tries to open a second one.
- Version:
- 2.0
- Author:
- Nicklas
- See Also:
-
Field Summary
-
Constructor Summary
ConstructorDescriptionCreate a new exception.Create a new exception with a message.DuplicateWizardException
(String msg, Throwable cause) Create a new exception with a cause and a message.Create a new exception with a cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
-
Constructor Details
-
DuplicateWizardException
public DuplicateWizardException()Create a new exception. -
DuplicateWizardException
Create a new exception with a message.- Parameters:
msg
- Message from the caller why the exception was thrown.
-
DuplicateWizardException
Create a new exception with a cause.- Parameters:
cause
- The throwable object that caused the exception.
-
DuplicateWizardException
Create a new exception with a cause and a message.- Parameters:
msg
- Message from the caller about why the exception was thrown.cause
- The throwable object that caused the exception.
-