Exception: Condor::NoExecutableException
- Inherits:
-
ExecutableException
- Object
- Exception
- ExecutableException
- Condor::NoExecutableException
- Defined in:
- lib/condor.rb
Overview
Exception thrown by SubmitFile when the specified program does not exist.
Instance Attribute Summary
Attributes inherited from ExecutableException
Instance Method Summary collapse
-
#initialize(executable) ⇒ NoExecutableException
constructor
A new instance of NoExecutableException.
Constructor Details
#initialize(executable) ⇒ NoExecutableException
Returns a new instance of NoExecutableException.
62 63 64 |
# File 'lib/condor.rb', line 62 def initialize(executable) super(executable, "Program '#{executable}' does not exist.") end |