Class XMLStreamException

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getMessage()  
      java.lang.Throwable getNested()
      Gets the nested Throwable.
      java.lang.Throwable getNestedException()
      Gets the nested exception.
      void printStackTrace()
      Prints the stack trace associated with this exception and its nested exception to System.err.
      void printStackTrace​(java.io.PrintStream s)
      Prints the stack trace associated with this exception and its nested exception.
      void printStackTrace​(java.io.PrintWriter w)
      Prints the stack trace associated with this exception and its nested exception.
      void superPrintStackTrace​(java.io.PrintStream ps)
      Call super.printStackTrace().
      void superPrintStackTrace​(java.io.PrintWriter pw)
      Call super.printStackTrace().
      java.lang.String superToString()
      Call super.toString().
      java.lang.String toString()
      Prints the exception message and its nested exception message.
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, setStackTrace
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • XMLStreamException

        public XMLStreamException()
      • XMLStreamException

        public XMLStreamException​(java.lang.String msg)
      • XMLStreamException

        public XMLStreamException​(java.lang.Throwable th)
      • XMLStreamException

        public XMLStreamException​(java.lang.String msg,
                                  java.lang.Throwable th)
    • Method Detail

      • getNestedException

        public java.lang.Throwable getNestedException()
        Gets the nested exception.
        Returns:
        Nested exception
      • getMessage

        public java.lang.String getMessage()
        Overrides:
        getMessage in class java.lang.Throwable
      • getNested

        public java.lang.Throwable getNested()
        Gets the nested Throwable.
        Specified by:
        getNested in interface NestedThrowable
        Returns:
        Nested exception
      • superToString

        public java.lang.String superToString()
        Description copied from interface: NestedThrowable
        Call super.toString(). [Kludge but necessary.]
        Specified by:
        superToString in interface NestedThrowable
      • superPrintStackTrace

        public void superPrintStackTrace​(java.io.PrintStream ps)
        Description copied from interface: NestedThrowable
        Call super.printStackTrace(). [Kludge but necessary.]
        Specified by:
        superPrintStackTrace in interface NestedThrowable
      • superPrintStackTrace

        public void superPrintStackTrace​(java.io.PrintWriter pw)
        Description copied from interface: NestedThrowable
        Call super.printStackTrace(). [Kludge but necessary.]
        Specified by:
        superPrintStackTrace in interface NestedThrowable
      • toString

        public java.lang.String toString()
        Prints the exception message and its nested exception message.
        Overrides:
        toString in class java.lang.Throwable
        Returns:
        String representation of the exception
      • printStackTrace

        public void printStackTrace​(java.io.PrintStream s)
        Prints the stack trace associated with this exception and its nested exception.
        Overrides:
        printStackTrace in class java.lang.Throwable
        Parameters:
        s - PrintStream
      • printStackTrace

        public void printStackTrace​(java.io.PrintWriter w)
        Prints the stack trace associated with this exception and its nested exception.
        Overrides:
        printStackTrace in class java.lang.Throwable
        Parameters:
        s - PrintStream
      • printStackTrace

        public void printStackTrace()
        Prints the stack trace associated with this exception and its nested exception to System.err.
        Overrides:
        printStackTrace in class java.lang.Throwable
        Parameters:
        s - PrintStream