Exception: Pione::Global::UnconfigurableVariableError

Inherits:
GlobalError
  • Object
show all
Defined in:
lib/pione/global/global-exception.rb

Instance Method Summary collapse

Constructor Details

#initialize(name) ⇒ UnconfigurableVariableError

Returns a new instance of UnconfigurableVariableError.



31
32
33
# File 'lib/pione/global/global-exception.rb', line 31

def initialize(name)
  @name = name
end

Instance Method Details

#messageObject



35
36
37
# File 'lib/pione/global/global-exception.rb', line 35

def message
  "global variable \"%s\" is unconfigurable." % @name
end