public abstract class ErrorWritingException extends XStreamException implements ErrorWriter
ErrorWriter
,
Serialized FormConstructor and Description |
---|
ErrorWritingException(String message)
Constructs a ErrorWritingException.
|
ErrorWritingException(String message,
Throwable cause)
Constructs a ErrorWritingException.
|
ErrorWritingException(Throwable cause)
Constructs a ErrorWritingException.
|
Modifier and Type | Method and Description |
---|---|
void |
add(String name,
String information)
Add some information to the error message.
|
String |
get(String errorKey)
Retrieve information of the error message.
|
String |
getMessage() |
String |
getShortMessage() |
Iterator |
keys()
Retrieve an iterator over all keys of the error message.
|
void |
set(String name,
String information)
Set some information to the error message.
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public ErrorWritingException(String message)
message
- the error messagepublic ErrorWritingException(Throwable cause)
cause
- the causing exceptionpublic String get(String errorKey)
ErrorWriter
get
in interface ErrorWriter
errorKey
- the key of the messagepublic void add(String name, String information)
ErrorWriter
add
in interface ErrorWriter
name
- something to identify the type of information (e.g. 'XPath').information
- detail of the message (e.g. '/blah/moo[3]'public void set(String name, String information)
ErrorWriter
set
in interface ErrorWriter
name
- something to identify the type of information (e.g. 'XPath').information
- detail of the message (e.g. '/blah/moo[3]'public Iterator keys()
ErrorWriter
keys
in interface ErrorWriter
public String getMessage()
getMessage
in class Throwable
public String getShortMessage()
Copyright © 2004–2017 XStream. All rights reserved.