Exception: Softlayer::Errors::MissingConfigOption

Inherits:
SoftlayerError
  • Object
show all
Defined in:
lib/softlayer/errors/missing_config_option.rb

Instance Attribute Summary

Attributes inherited from SoftlayerError

#problem, #resolution, #summary

Instance Method Summary collapse

Methods inherited from SoftlayerError

#compose_message

Constructor Details

#initialize(name) ⇒ MissingConfigOption

Returns a new instance of MissingConfigOption.



4
5
6
7
8
9
10
11
# File 'lib/softlayer/errors/missing_config_option.rb', line 4

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