Exception: TaxCloud::Errors::MissingConfigOption

Inherits:
TaxCloudError
  • Object
show all
Defined in:
lib/tax_cloud/errors/missing_config_option_error.rb

Overview

This error is raised when a configuration option is missing.

Instance Attribute Summary

Attributes inherited from TaxCloudError

#problem, #resolution, #summary

Instance Method Summary collapse

Methods inherited from TaxCloudError

#compose_message

Constructor Details

#initialize(name) ⇒ MissingConfigOption

Parameters

name

The attempted config option name.



9
10
11
12
13
14
15
16
# File 'lib/tax_cloud/errors/missing_config_option_error.rb', line 9

def initialize(name)
  super(
    compose_message(
      'missing_config_option',
      name: name
    )
  )
end