Package fr.flowarg.flowupdater.utils
Class FlowUpdaterException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
fr.flowarg.flowupdater.utils.FlowUpdaterException
- All Implemented Interfaces:
Serializable
A simple runtime exception class that represents a fatal FlowUpdater error.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionInitialize the exception.FlowUpdaterException(String message) Initialize the exception with an error message.FlowUpdaterException(String message, Throwable cause) Initialize the exception with an error message and a cause.FlowUpdaterException(Throwable cause) Initialize the exception with a cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
FlowUpdaterException
public FlowUpdaterException()Initialize the exception. -
FlowUpdaterException
Initialize the exception with an error message.- Parameters:
message- error message.
-
FlowUpdaterException
Initialize the exception with an error message and a cause.- Parameters:
message- error message.cause- cause.
-
FlowUpdaterException
Initialize the exception with a cause.- Parameters:
cause- cause.
-