Package eu.bandm.tools.annotations
Class ImplementationMissingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
eu.bandm.tools.annotations.ImplementationMissingException
- All Implemented Interfaces:
Serializable
Is thrown when a feature or variant is not yet implemented but foreseen.
- Since:
- 1.0
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructur with no information.Constructur with some text information.Constructur with some text information and causing Throwable.Constructur with causing Throwable. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ImplementationMissingException
public ImplementationMissingException()Constructur with no information. User must consult its stack trace. -
ImplementationMissingException
Constructur with some text information. User can additionally consult its stack trace.- Parameters:
s
- describing text.
-
ImplementationMissingException
Constructur with causing Throwable. User can additionally consult its stack trace.- Parameters:
c
- the causing throwable.
-
ImplementationMissingException
Constructur with some text information and causing Throwable. User can additionally consult its stack trace.- Parameters:
s
- describing text.c
- the causing throwable.
-