Exception: Condor::ExecutePermissionException

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

Overview

Exception thrown by SubmitFile when the specified program does not have executable permissions set.

Instance Attribute Summary

Attributes inherited from ExecutableException

#executable

Instance Method Summary collapse

Constructor Details

#initialize(executable) ⇒ ExecutePermissionException

Returns a new instance of ExecutePermissionException.



70
71
72
# File 'lib/condor.rb', line 70

def initialize(executable)
  super(executable, "Program '#{executable}' is not executable.")
end