Class ToDoException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.pnfsoftware.jeb.core.exceptions.JebRuntimeException
com.pnfsoftware.jeb.core.exceptions.ToDoException
- All Implemented Interfaces:
Serializable
Runtime exception raised to mark code paths whose implementation is still pending.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreate an exception with no detail message.ToDoException(String msg) Create an exception with a detail message.ToDoException(String format, Object... args) Create an exception with a formatted detail message. -
Method Summary
Methods inherited from class com.pnfsoftware.jeb.core.exceptions.JebRuntimeException
getUnit, setUnit, withUnitMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ToDoException
public ToDoException()Create an exception with no detail message. -
ToDoException
Create an exception with a detail message.- Parameters:
msg- the detail message
-
ToDoException
Create an exception with a formatted detail message.- Parameters:
format- the message format stringargs- the format arguments
-