Exception: Flowthings::Error

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

Direct Known Subclasses

HttpError, ObjectError

Defined Under Namespace

Classes: BadRequest, ClientError, Forbidden, HttpError, NotFound, ObjectError, RequestTooLarge, ServerError, ServiceUnavailable

Instance Method Summary collapse

Constructor Details

#initialize(message = "") ⇒ Error

Returns a new instance of Error.



3
4
5
6
7
# File 'lib/flowthings/error.rb', line 3

def initialize(message="")
  if message
    super(message)
  end
end