com.google.api.client.googleapis.json
Class GoogleJsonError.ErrorInfo

java.lang.Object
  extended by java.util.AbstractMap<String,Object>
      extended by com.google.api.client.util.GenericData
          extended by com.google.api.client.json.GenericJson
              extended by com.google.api.client.googleapis.json.GoogleJsonError.ErrorInfo
All Implemented Interfaces:
Cloneable, Map<String,Object>
Enclosing class:
GoogleJsonError

public static class GoogleJsonError.ErrorInfo
extends GenericJson

Detailed error information.


Nested Class Summary
 
Nested classes/interfaces inherited from class com.google.api.client.util.GenericData
GenericData.Flags
 
Nested classes/interfaces inherited from class java.util.AbstractMap
AbstractMap.SimpleEntry<K,V>, AbstractMap.SimpleImmutableEntry<K,V>
 
Nested classes/interfaces inherited from interface java.util.Map
Map.Entry<K,V>
 
Constructor Summary
GoogleJsonError.ErrorInfo()
           
 
Method Summary
 String getDomain()
          Returns the error classification or null for none.
 String getLocation()
          Returns the location in the request that caused the error or null for none or null for none.
 String getLocationType()
          Returns the type of location in the request that caused the error or null for none.
 String getMessage()
          Returns the human readable explanation of the error or null for none.
 String getReason()
          Returns the error reason or null for none.
 void setDomain(String domain)
          Sets the error classification or null for none.
 void setLocation(String location)
          Sets the location in the request that caused the error or null for none or null for none.
 void setLocationType(String locationType)
          Sets the type of location in the request that caused the error or null for none.
 void setMessage(String message)
          Sets the human readable explanation of the error or null for none.
 void setReason(String reason)
          Sets the error reason or null for none.
 
Methods inherited from class com.google.api.client.json.GenericJson
clone, getFactory, setFactory, toPrettyString, toString
 
Methods inherited from class com.google.api.client.util.GenericData
entrySet, get, getClassInfo, getUnknownKeys, put, putAll, remove, set, setUnknownKeys
 
Methods inherited from class java.util.AbstractMap
clear, containsKey, containsValue, equals, hashCode, isEmpty, keySet, size, values
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

GoogleJsonError.ErrorInfo

public GoogleJsonError.ErrorInfo()
Method Detail

getDomain

public final String getDomain()
Returns the error classification or null for none.

Since:
1.8

setDomain

public final void setDomain(String domain)
Sets the error classification or null for none.

Since:
1.8

getReason

public final String getReason()
Returns the error reason or null for none.

Since:
1.8

setReason

public final void setReason(String reason)
Sets the error reason or null for none.

Since:
1.8

getMessage

public final String getMessage()
Returns the human readable explanation of the error or null for none.

Since:
1.8

setMessage

public final void setMessage(String message)
Sets the human readable explanation of the error or null for none.

Since:
1.8

getLocation

public final String getLocation()
Returns the location in the request that caused the error or null for none or null for none.

Since:
1.8

setLocation

public final void setLocation(String location)
Sets the location in the request that caused the error or null for none or null for none.

Since:
1.8

getLocationType

public final String getLocationType()
Returns the type of location in the request that caused the error or null for none.

Since:
1.8

setLocationType

public final void setLocationType(String locationType)
Sets the type of location in the request that caused the error or null for none.

Since:
1.8


Copyright © 2010-2012 Google. All Rights Reserved.