Exception: Zoom::Error::ExecutableNotFound

Inherits:
Zoom::Error
  • Object
show all
Defined in:
lib/zoom/error/executable_not_found.rb

Instance Method Summary collapse

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