Package resources
Class CoreComponents.MissingCoreComponentException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- resources.CoreComponents.MissingCoreComponentException
-
- All Implemented Interfaces:
java.io.Serializable
- Enclosing class:
- CoreComponents
public static class CoreComponents.MissingCoreComponentException extends java.lang.RuntimeException
The exception that is thrown when a requested core component is missing and cannot be installed due to an error or the user cancelling the installation. This is an unchecked exception. It will generally only be thrown during one of two processes: while creating a new component throughNewEditorDialog.createEditorFromClassMapKey(java.lang.String)
or when loading a component from disk usingResourceKit.getGameComponentFromFile(java.io.File)
, both of which already catch and handle this exception. If you write plug-in code that checks for required components outside of new component creation/component loading, then make sure that you handle this exception.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MissingCoreComponentException(java.lang.String s)
-