Exception: Condor::ExecutableException
- Inherits:
-
Exception
- Object
- Exception
- Condor::ExecutableException
- Defined in:
- lib/condor.rb
Overview
Parent class for exceptions raised by this module because of bad executable files.
Direct Known Subclasses
Instance Attribute Summary collapse
-
#executable ⇒ Object
readonly
Returns the value of attribute executable.
Instance Method Summary collapse
-
#initialize(executable, message) ⇒ ExecutableException
constructor
A new instance of ExecutableException.
Constructor Details
#initialize(executable, message) ⇒ ExecutableException
Returns a new instance of ExecutableException.
54 55 56 57 |
# File 'lib/condor.rb', line 54 def initialize(executable, ) @executable = executable super() end |
Instance Attribute Details
#executable ⇒ Object (readonly)
Returns the value of attribute executable.
52 53 54 |
# File 'lib/condor.rb', line 52 def executable @executable end |