| 
 | Java™ Platform Standard Ed. 6 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.lang.Throwable
java.lang.Exception
javax.xml.stream.XMLStreamException
public class XMLStreamException
The base exception for unexpected processing errors. This Exception class is used to report well-formedness errors as well as unexpected processing conditions.
| Field Summary | |
|---|---|
| protected  Location | location | 
| protected  Throwable | nested | 
| Constructor Summary | |
|---|---|
| XMLStreamException()Default constructor | |
| XMLStreamException(String msg)Construct an exception with the assocated message. | |
| XMLStreamException(String msg,
                   Location location)Construct an exception with the assocated message, exception and location. | |
| XMLStreamException(String msg,
                   Location location,
                   Throwable th)Construct an exception with the assocated message, exception and location. | |
| XMLStreamException(String msg,
                   Throwable th)Construct an exception with the assocated message and exception | |
| XMLStreamException(Throwable th)Construct an exception with the assocated exception | |
| Method Summary | |
|---|---|
|  Location | getLocation()Gets the location of the exception | 
|  Throwable | getNestedException()Gets the nested exception. | 
| Methods inherited from class java.lang.Throwable | 
|---|
| fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString | 
| Methods inherited from class java.lang.Object | 
|---|
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait | 
| Field Detail | 
|---|
protected Throwable nested
protected Location location
| Constructor Detail | 
|---|
public XMLStreamException()
public XMLStreamException(String msg)
msg - the message to reportpublic XMLStreamException(Throwable th)
th - a nested exception
public XMLStreamException(String msg,
                          Throwable th)
th - a nested exceptionmsg - the message to report
public XMLStreamException(String msg,
                          Location location,
                          Throwable th)
th - a nested exceptionmsg - the message to reportlocation - the location of the error
public XMLStreamException(String msg,
                          Location location)
msg - the message to reportlocation - the location of the error| Method Detail | 
|---|
public Throwable getNestedException()
public Location getLocation()
| 
 | Java™ Platform Standard Ed. 6 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
Copyright © 1993, 2010, Oracle and/or its affiliates. All rights reserved.