Exception: Zoom::Error::ExecutableNotFound
- Inherits:
-
Zoom::Error
- Object
- RuntimeError
- Zoom::Error
- Zoom::Error::ExecutableNotFound
- Defined in:
- lib/zoom/error/executable_not_found.rb
Instance Method Summary collapse
-
#initialize(exe = nil) ⇒ ExecutableNotFound
constructor
A new instance of ExecutableNotFound.
Constructor Details
#initialize(exe = nil) ⇒ ExecutableNotFound
Returns a new instance of ExecutableNotFound.
2 3 4 5 |
# File 'lib/zoom/error/executable_not_found.rb', line 2 def initialize(exe = nil) super("Executable not found: #{exe}") if (exe) super("Executable not found") if (exe.nil?) end |