Exception: Spacebunny::SchemeNotValid

Inherits:
ArgumentError
  • Object
show all
Defined in:
lib/spacebunny/exceptions.rb

Instance Method Summary collapse

Constructor Details

#initialize(scheme) ⇒ SchemeNotValid

Returns a new instance of SchemeNotValid.



106
107
108
109
# File 'lib/spacebunny/exceptions.rb', line 106

def initialize(scheme)
  message = "Provided scheme #{scheme} is not valid"
  super(message)
end