Package dev.turboism.sdk.config
Class PluginConfigException
java.lang.Object
java.lang.Throwable
java.lang.Exception
dev.turboism.sdk.config.PluginConfigException
- All Implemented Interfaces:
Serializable
Checked failure from the legacy string-based configuration write API.
Prefer the typed schema API for new plugin settings. This exception does not imply that a typed provider is unavailable; it reports a legacy write failure only.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionPluginConfigException(String message) Creates a write failure with a sanitized explanation.PluginConfigException(String message, Throwable cause) Creates a write failure with its underlying cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
PluginConfigException
Creates a write failure with a sanitized explanation.- Parameters:
message- failure description
-
PluginConfigException
Creates a write failure with its underlying cause.- Parameters:
message- failure descriptioncause- underlying failure
-