-
- All Implemented Interfaces:
-
java.io.Serializable
public class OnErrorNotImplementedException extends RuntimeException
-
-
Constructor Summary
Constructors Constructor Description OnErrorNotImplementedException(String message, Throwable e)
Customizes the {@code Throwable}
with a custom message and wraps it before it is to be re-thrown as an{@code OnErrorNotImplementedException}
.OnErrorNotImplementedException(Throwable e)
Wraps the {@code Throwable}
before it is to be re-thrown as an{@code OnErrorNotImplementedException}
.
-
Method Summary
Modifier and Type Method Description -
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, setStackTrace, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Constructor Detail
-
OnErrorNotImplementedException
OnErrorNotImplementedException(String message, Throwable e)
Customizes the{@code Throwable}
with a custom message and wraps it before it is to be re-thrown as an{@code OnErrorNotImplementedException}
.- Parameters:
message
- the message to assign to the{@code Throwable}
to re-throwe
- the{@code Throwable}
to re-throw; if null, a NullPointerException is constructed
-
OnErrorNotImplementedException
OnErrorNotImplementedException(Throwable e)
Wraps the{@code Throwable}
before it is to be re-thrown as an{@code OnErrorNotImplementedException}
.- Parameters:
e
- the{@code Throwable}
to re-throw; if null, a NullPointerException is constructed
-
-
-
-