| java.lang.Object | |
| ↳ | com.google.gdata.util.ErrorDomain |
Known Direct Subclasses
|
This is the parent class of all error domain classes. Error domain classes package up a group of related error codes (and associated information) into an error domain with a unique name, by default the fully qualified name of the class. Create an error domain as follows:
public static final variable named ERR
with the same type as the subclass; initialize it to an
instance of the subclass. (This is eager singleton
initialization.)
super("foo") in the constructor.
public final ErrorCode fields
thus: public final ErrorCode
foo = new ErrorCode("foo")
(Note: not {@static }).
withInternalReason(String), withExtendedHelp(String), or withSendReport(String).
Here's a complete example:
public class FooErrorDomain extends ErrorDomain {
private FooErrorDomain() {
super("Foo");
}
public static final FooErrorDomain ERR = new FooErrorDomain();
public final ErrorCode bar = new ErrorCode("brokenBar")
.withInternalReason("Bar is not working yet");
public final ErrorCode unsupported = new ErrorCode("unsupported")
.withInternalReason("Requested key is not supported");
public final ErrorCode invalid = new ErrorCode("invalidValue")
.withInternalReason("Invalid value for attribute")
.withExtendedHelp("http://www.google.com/foo/validAttributes.html");
}
Note that all with methods return a mutated copy.
| Nested Classes | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| ErrorDomain.ErrorCode | ErrorCode objects represent an error code within an error domain. | ||||||||||
| Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| domainName | |||||||||||
| Protected Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Constructs an ErrorDomain with a specified name.
| |||||||||||
Constructs an ErrorDomain with a default eror domain name.
| |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Returns the name associated with this ErrorDomain..
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
Constructs an ErrorDomain with a specified name. This can be called
only from the constructor of a subclass. The value will appear as
the content of the domain element in the XML error format.
| domainName |
|---|
Constructs an ErrorDomain with a default eror domain name. Use
ErrorDomain(String) to set a different domain name.
Returns the name associated with this ErrorDomain..