Exception: TINAMI::Error

Inherits:
StandardError
  • Object
show all
Defined in:
lib/tinami/error.rb

Overview

Custom error class for rescuing from all TINAMI errors

Direct Known Subclasses

BookmarkUserOnlyError, FailError, UserOnlyError

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(msg, response = nil) ⇒ Error

Returns a new instance of Error.



6
7
8
9
# File 'lib/tinami/error.rb', line 6

def initialize(msg, response = nil)
  super(msg)
  @response = response
end

Instance Attribute Details

#responseObject (readonly)

Returns the value of attribute response.



4
5
6
# File 'lib/tinami/error.rb', line 4

def response
  @response
end