Class XMLSerializationException

  • All Implemented Interfaces:
    java.io.Serializable

    public class XMLSerializationException
    extends java.lang.Exception
    Represents a problem with XML serialization or deserialization.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      XMLSerializationException()
      Constructs a XMLSerializationException object with no details
      XMLSerializationException​(java.lang.String message)
      Constructs a XMLSerializationException object with a specific message.
      XMLSerializationException​(java.lang.String message, java.lang.Throwable cause)
      Constructs a XMLSerializationException object with a specific message and a different Throwable as the underlying cause.
      XMLSerializationException​(java.lang.Throwable cause)
      Constructs a XMLSerializationException object with a different Throwable as the underlying cause.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

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

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

      • XMLSerializationException

        public XMLSerializationException()
        Constructs a XMLSerializationException object with no details
      • XMLSerializationException

        public XMLSerializationException​(java.lang.String message)
        Constructs a XMLSerializationException object with a specific message.
        Parameters:
        message - an error message
      • XMLSerializationException

        public XMLSerializationException​(java.lang.Throwable cause)
        Constructs a XMLSerializationException object with a different Throwable as the underlying cause.
        Parameters:
        cause - the root cause
      • XMLSerializationException

        public XMLSerializationException​(java.lang.String message,
                                         java.lang.Throwable cause)
        Constructs a XMLSerializationException object with a specific message and a different Throwable as the underlying cause.
        Parameters:
        message - an error message
        cause - the root cause