Class RecoverableException

  • All Implemented Interfaces:
    java.io.Serializable

    @Deprecated
    public class RecoverableException
    extends AnnotationException
    Deprecated.
    Was only ever referenced in a single place, in an extremely dubious way.
    An exception that indicates a condition where the hope is that subsequent processing will be able to recover from it.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      RecoverableException​(java.lang.String msg)
      Deprecated.
      Constructs a RecoverableException using the given message and underlying cause.
      RecoverableException​(java.lang.String msg, java.lang.Throwable cause)
      Deprecated.
      Constructs a RecoverableException using the given message and 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

      • RecoverableException

        public RecoverableException​(java.lang.String msg,
                                    java.lang.Throwable cause)
        Deprecated.
        Constructs a RecoverableException using the given message and underlying cause.
        Parameters:
        msg - The message explaining the condition that caused the exception
        cause - The underlying exception
      • RecoverableException

        public RecoverableException​(java.lang.String msg)
        Deprecated.
        Constructs a RecoverableException using the given message and underlying cause.
        Parameters:
        msg -