Exception: Condor::ExecutableException

Inherits:
Exception
  • Object
show all
Defined in:
lib/condor.rb

Overview

Parent class for exceptions raised by this module because of bad executable files.

Instance Attribute Summary collapse

Instance Method Summary collapse

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, message)
  @executable = executable
  super(message)
end

Instance Attribute Details

#executableObject (readonly)

Returns the value of attribute executable.



52
53
54
# File 'lib/condor.rb', line 52

def executable
  @executable
end