Class 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
    • 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.
      • DuplicateWizardException

        public DuplicateWizardException​(String msg,
                                        Throwable cause)
        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.