Class EnhancerUserException

  • All Implemented Interfaces:
    Serializable

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

      • nested

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

      • EnhancerUserException

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

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

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

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