public class InternalErrorException extends PluginException
This class is thrown when an unexpected error happened in the plug-in implementation.
Examples: logic error, broken switch case, null pointer.
Constructor and Description |
---|
InternalErrorException()
This method is a default constructor.
|
InternalErrorException(java.lang.String resourceBundleName, java.lang.String messageKey, java.lang.Object[] formatArguments, java.lang.String defaultText)
This method is a constructor with a localized message.
|
InternalErrorException(java.lang.String resourceBundleName, java.lang.String messageKey, java.lang.Object[] formatArguments, java.lang.String defaultText, java.lang.Throwable exception)
This method is a constructor with a localized message and a chained exception.
|
InternalErrorException(java.lang.Throwable exception)
This method is a constructor with a chained exception.
|
public InternalErrorException()
This method is a default constructor.
public InternalErrorException(java.lang.String resourceBundleName, java.lang.String messageKey, java.lang.Object[] formatArguments, java.lang.String defaultText)
This method is a constructor with a localized message.
public InternalErrorException(java.lang.String resourceBundleName, java.lang.String messageKey, java.lang.Object[] formatArguments, java.lang.String defaultText, java.lang.Throwable exception)
This method is a constructor with a localized message and a chained exception.
public InternalErrorException(java.lang.Throwable exception)
This method is a constructor with a chained exception.