class Scopie::InvalidTypeError
Public Class Methods
new(type)
click to toggle source
# File lib/scopie/invalid_type_error.rb, line 5 def initialize(type) @type = type end
Public Instance Methods
message()
click to toggle source
# File lib/scopie/invalid_type_error.rb, line 9 def message "Unknown value for option 'type' provided: :#{@type}" end