Class RuntimeOperatorException

  • All Implemented Interfaces:
    java.io.Serializable

    public class RuntimeOperatorException
    extends java.lang.RuntimeException
    Unchecked variant of 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().

    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor 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.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • RuntimeOperatorException

        public RuntimeOperatorException​(java.lang.String msg)
        Construct an exception with the supplied diagnostic message and no underlying cause.
        Parameters:
        msg - diagnostic message describing the failure.
      • RuntimeOperatorException

        public RuntimeOperatorException​(java.lang.String msg,
                                        java.lang.Throwable cause)
        Construct an exception with the supplied diagnostic message and the underlying cause.
        Parameters:
        msg - diagnostic message describing the failure.
        cause - the underlying exception that triggered the failure, or null.