Class EnhancerFatalError

java.lang.Object
java.lang.Throwable
java.lang.Exception
com.sun.jdo.api.persistence.enhancer.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:
  • Field Details

    • nested

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

    • 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.