Package com.queomedia.commons.exceptions
Class NotImplementedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.queomedia.commons.exceptions.NotImplementedException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
NotImplementedCaseException,NotImplementedCaseExecption,NotImplementedErrorException,NotImplmentedCaseExecption
public class NotImplementedException extends RuntimeException
This exception indicate that something is not implemented.This is an substitution for
sun.reflect.generics.reflectiveObjects.NotImplementedException, because this package is an internal sun package and should not been used in Java 9.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NotImplementedException()Instantiates a new not implemented case exceptionNotImplementedException(Enum<?> enumCase)The Constructor.NotImplementedException(String message)The Constructor.NotImplementedException(String message, Throwable cause)The Constructor.NotImplementedException(Throwable cause)The Constructor.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
NotImplementedException
public NotImplementedException()
Instantiates a new not implemented case exception
-
NotImplementedException
public NotImplementedException(String message, Throwable cause)
The Constructor.- Parameters:
message- the messagecause- the cause
-
NotImplementedException
public NotImplementedException(String message)
The Constructor.- Parameters:
message- the message
-
NotImplementedException
public NotImplementedException(Throwable cause)
The Constructor.- Parameters:
cause- the cause
-
NotImplementedException
public NotImplementedException(Enum<?> enumCase)
The Constructor.- Parameters:
enumCase- the enum case
-
-