Class CacheMetaDataException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
net.ygbstudio.powerwp4j.exceptions.CacheMetaDataException
- All Implemented Interfaces:
Serializable
CacheMetaDataException is an exception that is thrown when there is an error with the cache
metadata or its creation.
- Author:
- Yoham Gabriel B. @ YGBStudio
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCacheMetaDataException(@NotNull String message) Creates a new cache metadata exception with the given message.CacheMetaDataException(@NotNull String message, @NotNull Throwable cause) Creates a new cache metadata exception with a message and an upstream exception (cause).CacheMetaDataException(@NotNull Supplier<String> message) Creates a new cache metadata exception with a lazily computed message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CacheMetaDataException
Creates a new cache metadata exception with the given message. -
CacheMetaDataException
Creates a new cache metadata exception with a lazily computed message. -
CacheMetaDataException
Creates a new cache metadata exception with a message and an upstream exception (cause).
-