Package org.jitsi.util.xml
Class XMLException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.jitsi.util.xml.XMLException
-
- All Implemented Interfaces:
Serializable
public class XMLException extends Exception
The class is used to mask any XML specific exceptions thrown during parsing various descriptors.- Version:
- 1.0
- Author:
- Emil Ivov
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description XMLException(String message)Constructs a new XMLException with the specified detail message.XMLException(String message, Throwable cause)Constructs a new XMLException with the specified detail message and cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
XMLException
public XMLException(String message, Throwable cause)
Constructs a new XMLException with the specified detail message and cause.- Parameters:
message- a message specifying the reason that caused the exception.cause- the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-
XMLException
public XMLException(String message)
Constructs a new XMLException with the specified detail message.- Parameters:
message- a message specifying the reason that caused the exception.
-
-