Package javax.jdo

Class JDOEnhanceException

  • All Implemented Interfaces:
    java.io.Serializable

    public class JDOEnhanceException
    extends JDOException
    Exception thrown when an error occurs during enhancement.
    Since:
    3.0
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      JDOEnhanceException()
      Constructs a new JDOEnhanceException without a detail message.
      JDOEnhanceException​(java.lang.String msg)
      Constructs a new JDOEnhanceException with the specified detail message.
      JDOEnhanceException​(java.lang.String msg, java.lang.Throwable nested)
      Constructs a new JDOEnhanceException with the specified detail message and nested Throwables.
      JDOEnhanceException​(java.lang.String msg, java.lang.Throwable[] nested)
      Constructs a new JDOEnhanceException with the specified detail message and nested Throwables.
    • Constructor Detail

      • JDOEnhanceException

        public JDOEnhanceException()
        Constructs a new JDOEnhanceException without a detail message.
      • JDOEnhanceException

        public JDOEnhanceException​(java.lang.String msg)
        Constructs a new JDOEnhanceException with the specified detail message.
        Parameters:
        msg - the detail message.
      • JDOEnhanceException

        public JDOEnhanceException​(java.lang.String msg,
                                   java.lang.Throwable[] nested)
        Constructs a new JDOEnhanceException with the specified detail message and nested Throwables.
        Parameters:
        msg - the detail message.
        nested - the nested Throwable[].
      • JDOEnhanceException

        public JDOEnhanceException​(java.lang.String msg,
                                   java.lang.Throwable nested)
        Constructs a new JDOEnhanceException with the specified detail message and nested Throwables.
        Parameters:
        msg - the detail message.
        nested - the nested Throwable.