Exception: DatabaseValidations::Errors::OptionIsNotSupported

Inherits:
Base
  • Object
show all
Defined in:
lib/database_validations/lib/errors.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Base

#env_message

Constructor Details

#initialize(option, database, supported_options) ⇒ OptionIsNotSupported

Returns a new instance of OptionIsNotSupported.



47
48
49
50
51
52
# File 'lib/database_validations/lib/errors.rb', line 47

def initialize(option, database, supported_options)
  @option = option
  @database = database
  @supported_options = supported_options
  super "Option #{self.option} is not supported for #{self.database}. Supported options are: #{self.supported_options}"
end

Instance Attribute Details

#databaseObject (readonly)

Returns the value of attribute database.



45
46
47
# File 'lib/database_validations/lib/errors.rb', line 45

def database
  @database
end

#optionObject (readonly)

Returns the value of attribute option.



45
46
47
# File 'lib/database_validations/lib/errors.rb', line 45

def option
  @option
end

#supported_optionsObject (readonly)

Returns the value of attribute supported_options.



45
46
47
# File 'lib/database_validations/lib/errors.rb', line 45

def supported_options
  @supported_options
end