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
public class DuplicateWizardException extends RuntimeException
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:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description DuplicateWizardException()
Create a new exception.DuplicateWizardException(String msg)
Create a new exception with a message.DuplicateWizardException(String msg, Throwable cause)
Create a new exception with a cause and a message.DuplicateWizardException(Throwable cause)
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 Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
DuplicateWizardException
public DuplicateWizardException()
Create a new exception.
-
DuplicateWizardException
public DuplicateWizardException(String msg)
Create a new exception with a message.- Parameters:
msg
- Message from the caller why the exception was thrown.
-
DuplicateWizardException
public DuplicateWizardException(Throwable cause)
Create a new exception with a cause.- Parameters:
cause
- The throwable object that caused the exception.
-
-