Exception: Finale::NotLoggedIn

Inherits:
StandardError
  • Object
show all
Defined in:
lib/finale/errors.rb

Instance Method Summary collapse

Constructor Details

#initialize(verb: nil, url: nil) ⇒ NotLoggedIn

Returns a new instance of NotLoggedIn.



3
4
5
6
# File 'lib/finale/errors.rb', line 3

def initialize(verb: nil, url: nil)
  message = "Request to (#{verb}) #{url} can't be made. You are not logged in."
  super(message)
end