class Zoom::Error::ProfileDoesNotExist

Public Class Methods

new(profile = nil) click to toggle source
Calls superclass method
# File lib/zoom/error/profile_does_not_exist.rb, line 2
def initialize(profile = nil)
    super("Profile does not exist: #{profile}") if (profile)
    super("Profile does not exist") if (profile.nil?)
end