public class

XStreamException

extends BaseException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.lang.RuntimeException
         ↳ com.thoughtworks.xstream.core.BaseException
           ↳ com.thoughtworks.xstream.XStreamException
Known Direct Subclasses
Known Indirect Subclasses

Class Overview

Base exception for all thrown exceptions with XStream. JDK 1.3 friendly cause handling.

Summary

Public Constructors
XStreamException(String message)
Constructs an XStreamException with a message.
XStreamException(Throwable cause)
Constructs an XStreamException as wrapper for a different causing Throwable.
XStreamException(String message, Throwable cause)
Constructs an XStreamException with a message as wrapper for a different causing Throwable.
Protected Constructors
XStreamException()
Default constructor.
Public Methods
Throwable getCause()
[Expand]
Inherited Methods
From class com.thoughtworks.xstream.core.BaseException
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public XStreamException (String message)

Constructs an XStreamException with a message.

public XStreamException (Throwable cause)

Constructs an XStreamException as wrapper for a different causing Throwable.

public XStreamException (String message, Throwable cause)

Constructs an XStreamException with a message as wrapper for a different causing Throwable.

Protected Constructors

protected XStreamException ()

Default constructor.

Public Methods

public Throwable getCause ()