Exception: SiteFuel::External::ProgramNotFound
- Inherits:
-
StandardError
- Object
- StandardError
- SiteFuel::External::ProgramNotFound
- Defined in:
- lib/sitefuel/external/AbstractExternalProgram.rb
Overview
raised when an external program can't be found
Instance Attribute Summary (collapse)
-
- (Object) program_name
readonly
Returns the value of attribute program_name.
Instance Method Summary (collapse)
-
- (ProgramNotFound) initialize(program_name)
constructor
A new instance of ProgramNotFound.
Constructor Details
- (ProgramNotFound) initialize(program_name)
A new instance of ProgramNotFound
25 26 27 |
# File 'lib/sitefuel/external/AbstractExternalProgram.rb', line 25 def initialize(program_name) @program_name = program_name end |
Instance Attribute Details
- (Object) program_name (readonly)
Returns the value of attribute program_name
24 25 26 |
# File 'lib/sitefuel/external/AbstractExternalProgram.rb', line 24 def program_name @program_name end |