public class RuntimeOperatorException
extends java.lang.RuntimeException
OperatorException used when an operator method has no
throws clause to declare a checked exception on.
The streaming operator interfaces in this package extend OutputStream
/ InputStream / Closeable, whose method signatures
— in particular close() and the no-args end-of-stream finalisers used
by some calculators — either don't declare throws IOException at all,
or are inherited from interfaces whose contract precludes additional checked
exceptions. When a cryptographic failure surfaces from one of those points, the
operator wraps it in a RuntimeOperatorException so it can still propagate
to the caller without violating the signature. The original failure is available
via Throwable.getCause().
| Constructor and Description |
|---|
RuntimeOperatorException(java.lang.String msg)
Construct an exception with the supplied diagnostic message and no underlying cause.
|
RuntimeOperatorException(java.lang.String msg,
java.lang.Throwable cause)
Construct an exception with the supplied diagnostic message and the underlying cause.
|
public RuntimeOperatorException(java.lang.String msg)
msg - diagnostic message describing the failure.public RuntimeOperatorException(java.lang.String msg,
java.lang.Throwable cause)
msg - diagnostic message describing the failure.cause - the underlying exception that triggered the failure, or null.