Exception: Condor::NoExecutableException

Inherits:
ExecutableException show all
Defined in:
lib/condor.rb

Overview

Exception thrown by SubmitFile when the specified program does not exist.

Instance Attribute Summary

Attributes inherited from ExecutableException

#executable

Instance Method Summary collapse

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