ErrorDetails
Contents
[
Hide
]Inheritance: java.lang.Object
public class ErrorDetails
Error informnation
Constructors
| Constructor | Description |
|---|---|
| ErrorDetails() | Initializes a new instance of the ErrorDetails class. |
| ErrorDetails(String domain, String reason) | Initializes a new instance of the ErrorDetails class. |
Methods
| Method | Description |
|---|---|
| equals(Object arg0) | |
| getClass() | |
| getDomain() | Domain, or broad category, of the error. |
| getReason() | Specific reason for the error. |
| hashCode() | |
| notify() | |
| notifyAll() | |
| setDomain(String value) | Domain, or broad category, of the error. |
| setReason(String value) | Specific reason for the error. |
| toString() | Returns a String which represents the object instance. |
| wait() | |
| wait(long arg0) | |
| wait(long arg0, int arg1) |
ErrorDetails()
public ErrorDetails()
Initializes a new instance of the ErrorDetails class.
ErrorDetails(String domain, String reason)
public ErrorDetails(String domain, String reason)
Initializes a new instance of the ErrorDetails class.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| domain | java.lang.String | Domain, or broad category, of the error. |
| reason | java.lang.String | Specific reason for the error. |
equals(Object arg0)
public boolean equals(Object arg0)
Parameters:
| Parameter | Type | Description |
|---|---|---|
| arg0 | java.lang.Object |
Returns: boolean
getClass()
public final native Class<?> getClass()
Returns: java.lang.Class
getDomain()
public final String getDomain()
Domain, or broad category, of the error.
Returns: java.lang.String
getReason()
public final String getReason()
Specific reason for the error.
Returns: java.lang.String
hashCode()
public native int hashCode()
Returns: int
notify()
public final native void notify()
notifyAll()
public final native void notifyAll()
setDomain(String value)
public final void setDomain(String value)
Domain, or broad category, of the error.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| value | java.lang.String |
setReason(String value)
public final void setReason(String value)
Specific reason for the error.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| value | java.lang.String |
toString()
public String toString()
Returns a String which represents the object instance.
Returns: java.lang.String - Returns a String which represents the object instance.
wait()
public final void wait()
wait(long arg0)
public final native void wait(long arg0)
Parameters:
| Parameter | Type | Description |
|---|---|---|
| arg0 | long |
wait(long arg0, int arg1)
public final void wait(long arg0, int arg1)
Parameters:
| Parameter | Type | Description |
|---|---|---|
| arg0 | long | |
| arg1 | int |