Class EnhancerFatalError

  • All Implemented Interfaces:
    Serializable

    public class EnhancerFatalError
    extends Exception
    Thrown to indicate that the class-file enhancer failed to perform an operation due to a serious error. The enhancer is not guaranteed to be in a consistent state anymore.
    See Also:
    Serialized Form
    • Field Detail

      • nested

        public final Throwable nested
        An optional nested exception.
    • Constructor Detail

      • EnhancerFatalError

        public EnhancerFatalError()
        Constructs an EnhancerFatalError with no detail message.
      • EnhancerFatalError

        public EnhancerFatalError​(String msg)
        Constructs an EnhancerFatalError with the specified detail message.
      • EnhancerFatalError

        public EnhancerFatalError​(Throwable nested)
        Constructs an EnhancerFatalError with an optional nested exception.
      • EnhancerFatalError

        public EnhancerFatalError​(String msg,
                                  Throwable nested)
        Constructs an EnhancerFatalError with the specified detail message and an optional nested exception.