Exception: GoogleAppsApi::GDataError
- Inherits:
-
RuntimeError
- Object
- RuntimeError
- GoogleAppsApi::GDataError
- Defined in:
- lib/google_apps_api/exceptions.rb,
lib/google_apps_api/base_api.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#code ⇒ Object
Returns the value of attribute code.
-
#input ⇒ Object
Returns the value of attribute input.
-
#reason ⇒ Object
Returns the value of attribute reason.
Instance Method Summary collapse
-
#initialize ⇒ GDataError
constructor
A new instance of GDataError.
- #inspect ⇒ Object
- #to_s ⇒ Object
Constructor Details
#initialize ⇒ GDataError
Returns a new instance of GDataError.
229 230 |
# File 'lib/google_apps_api/base_api.rb', line 229 def initialize() end |
Instance Attribute Details
#code ⇒ Object
Returns the value of attribute code.
227 228 229 |
# File 'lib/google_apps_api/base_api.rb', line 227 def code @code end |
#input ⇒ Object
Returns the value of attribute input.
227 228 229 |
# File 'lib/google_apps_api/base_api.rb', line 227 def input @input end |
#reason ⇒ Object
Returns the value of attribute reason.
227 228 229 |
# File 'lib/google_apps_api/base_api.rb', line 227 def reason @reason end |
Instance Method Details
#inspect ⇒ Object
236 237 238 239 |
# File 'lib/google_apps_api/base_api.rb', line 236 def inspect "#{code}: #{reason}" end |
#to_s ⇒ Object
232 233 234 |
# File 'lib/google_apps_api/base_api.rb', line 232 def to_s "#{code}: #{reason}" end |