Class MissingInfoException
Object
Throwable
Exception
FactoryException
MissingInfoException
- All Implemented Interfaces:
Serializable
Thrown when a required operation can't be performed because some information is missing or isn't set up properly.
- Since:
- 2.4
- Author:
- Jan Jezek
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs an exception with no detail message.MissingInfoException
(String message) Constructs an exception with the specified detail message. -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
MissingInfoException
Constructs an exception with the specified detail message.- Parameters:
message
- The cause for this exception. The cause is saved for later retrieval by theThrowable.getCause()
method.
-
MissingInfoException
public MissingInfoException()Constructs an exception with no detail message.
-