Package org.jdom

Class JDOMException

    • Constructor Detail

      • JDOMException

        public JDOMException()
        This will create an Exception.
      • JDOMException

        public JDOMException​(String message)
        This will create an Exception with the given message.
        Parameters:
        message - String message indicating the problem that occurred.
      • JDOMException

        public JDOMException​(String message,
                             Throwable cause)
        This will create an Exception with the given message and wrap another Exception. This is useful when the originating Exception should be held on to.
        Parameters:
        message - String message indicating the problem that occurred.
        cause - Throwable that caused this to be thrown.