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
public class NotYetImplementedException extends CodeInconsistencyException
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 JDKUnsupportedOperationException
instead (e.g. as with unmodifiable lists).- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NotYetImplementedException()
Deprecated.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 Detail
-
NotYetImplementedException
@Deprecated(since="0.1") public NotYetImplementedException()
Deprecated.Deprecated to remind you to implement the corresponding code before releasing the software.
-
NotYetImplementedException
@Deprecated(since="0.1") public NotYetImplementedException(String message)
Deprecated.Deprecated to remind you to implement the corresponding code before releasing the software.
-
-