Package com.queomedia.commons.exceptions
Class NotImplementedErrorException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.queomedia.commons.exceptions.NotImplementedException
-
- com.queomedia.commons.exceptions.NotImplementedErrorException
-
- All Implemented Interfaces:
Serializable
public class NotImplementedErrorException extends NotImplementedException
Indicate that an specific error case is not implemented.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NotImplementedErrorException()Instantiates a new not implemented error.NotImplementedErrorException(Object resultObject)The Constructor.NotImplementedErrorException(String message)The Constructor.NotImplementedErrorException(String message, Throwable cause)The Constructor.NotImplementedErrorException(Throwable cause)The Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectgetResultObject()StringtoString()-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
-
-
-
Constructor Detail
-
NotImplementedErrorException
public NotImplementedErrorException()
Instantiates a new not implemented error.
-
NotImplementedErrorException
public NotImplementedErrorException(String message)
The Constructor.- Parameters:
message- the message
-
NotImplementedErrorException
public NotImplementedErrorException(Throwable cause)
The Constructor.- Parameters:
cause- the cause
-
NotImplementedErrorException
public NotImplementedErrorException(String message, Throwable cause)
The Constructor.- Parameters:
message- the messagecause- the cause
-
NotImplementedErrorException
public NotImplementedErrorException(Object resultObject)
The Constructor.- Parameters:
resultObject- The result object which contains the error for which no implementation exits.
-
-