Package com.github.mizool.core.exception
Class NotYetImplementedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.github.mizool.core.exception.CodeInconsistencyException
com.github.mizool.core.exception.NotYetImplementedException
- All Implemented Interfaces:
Serializable
Thrown to indicate that a method was not yet implemented by the developer. This is intended to be temporary and will
cause a deprecation warning during compilation. Thus, if there are no concrete plans to implement the method soon,
you should use the JDK
UnsupportedOperationException
instead (e.g. as with unmodifiable lists).- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDeprecated.Deprecated to remind you to implement the corresponding code before releasing the software.NotYetImplementedException
(String message) Deprecated.Deprecated to remind you to implement the corresponding code before releasing the software. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
NotYetImplementedException
Deprecated.Deprecated to remind you to implement the corresponding code before releasing the software. -
NotYetImplementedException
Deprecated.Deprecated to remind you to implement the corresponding code before releasing the software.
-