Enum Class ExtensionException.ExtensionExceptionType
java.lang.Object
java.lang.Enum<ExtensionException.ExtensionExceptionType>
ghidra.framework.plugintool.dialog.ExtensionException.ExtensionExceptionType
- All Implemented Interfaces:
Serializable
,Comparable<ExtensionException.ExtensionExceptionType>
,Constable
- Enclosing class:
- ExtensionException
public static enum ExtensionException.ExtensionExceptionType
extends Enum<ExtensionException.ExtensionExceptionType>
Provides more detail as to the specific source of the exception.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThrown when there is a problem copying a folder during an installationThrown when installing an extension to an existing locationThrown when the user cancels the installationThrown if the required installation location does not existThrown when there is a problem reading/extracting a zip file during installation -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INVALID_INSTALL_LOCATION
Thrown if the required installation location does not exist -
DUPLICATE_FILE_ERROR
Thrown when installing an extension to an existing location -
ZIP_ERROR
Thrown when there is a problem reading/extracting a zip file during installation -
COPY_ERROR
Thrown when there is a problem copying a folder during an installation -
INSTALL_CANCELLED
Thrown when the user cancels the installation
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-