Class NotImplementedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
me.github.simonplays15.betterbansystem.api.exceptions.NotImplementedException
- All Implemented Interfaces:
Serializable
The NotImplementedException class is a subclass of RuntimeException,
which is thrown to indicate that the code is not implemented yet.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionException thrown to indicate that code is not implemented yet.Constructs a newNotImplementedException
with the specified detail 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
-
NotImplementedException
public NotImplementedException()Exception thrown to indicate that code is not implemented yet. -
NotImplementedException
Constructs a newNotImplementedException
with the specified detail message.- Parameters:
msg
- the detail message
-