class Zoom::Error::ExecutableNotFound

Public Class Methods

new(exe = nil) click to toggle source
Calls superclass method
# 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