public final class Message extends Object implements Serializable, Element
addError() statements:
try {
bindPropertiesFromFile();
} catch (IOException e) {
addError(e);
}| Constructor and Description |
|---|
Message(List<Object> sources,
String message,
Throwable cause) |
Message(Object source,
String message) |
Message(String message) |
Message(String message,
Throwable cause) |
| Modifier and Type | Method and Description |
|---|---|
<T> T |
acceptVisitor(ElementVisitor<T> visitor)
Accepts an element visitor.
|
void |
applyTo(Binder binder)
Writes this module element to the given binder (optional operation).
|
boolean |
equals(Object o) |
Throwable |
getCause()
Returns the throwable that caused this message, or
null if this message was not caused
by a throwable. |
String |
getMessage()
Gets the error message text.
|
String |
getSource()
Returns an arbitrary object containing information about the "place" where this element was
configured.
|
List<Object> |
getSources() |
int |
hashCode() |
String |
toString() |
public Message(String message)
public String getSource()
ElementTools might specially handle types they know about; StackTraceElement is a good
example. Tools should simply call toString() on the source object if the type is
unfamiliar.
public String getMessage()
public <T> T acceptVisitor(ElementVisitor<T> visitor)
ElementacceptVisitor in interface Elementvisitor - to call back onpublic Throwable getCause()
null if this message was not caused
by a throwable.Copyright © 2006–2018 Google, Inc.. All rights reserved.