Exception: Fig::NoSuchPackageConfigError

Inherits:
UserInputError show all
Defined in:
lib/fig/nosuchpackageconfigerror.rb

Overview

User specified a configuration for a Package that does not exist.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(message, descriptor) ⇒ NoSuchPackageConfigError

Returns a new instance of NoSuchPackageConfigError.



9
10
11
12
13
# File 'lib/fig/nosuchpackageconfigerror.rb', line 9

def initialize(message, descriptor)
  super(message)

  @descriptor = descriptor
end

Instance Attribute Details

#descriptorObject

Returns the value of attribute descriptor.



7
8
9
# File 'lib/fig/nosuchpackageconfigerror.rb', line 7

def descriptor
  @descriptor
end