ErrorDetails

Inheritance: java.lang.Object

public class ErrorDetails

Error informnation

Constructors

ConstructorDescription
ErrorDetails()Initializes a new instance of the ErrorDetails class.
ErrorDetails(String domain, String reason)Initializes a new instance of the ErrorDetails class.

Methods

MethodDescription
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:

ParameterTypeDescription
domainjava.lang.StringDomain, or broad category, of the error.
reasonjava.lang.StringSpecific reason for the error.

equals(Object arg0)

public boolean equals(Object arg0)

Parameters:

ParameterTypeDescription
arg0java.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:

ParameterTypeDescription
valuejava.lang.String

setReason(String value)

public final void setReason(String value)

Specific reason for the error.

Parameters:

ParameterTypeDescription
valuejava.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:

ParameterTypeDescription
arg0long

wait(long arg0, int arg1)

public final void wait(long arg0, int arg1)

Parameters:

ParameterTypeDescription
arg0long
arg1int