Exception: Zoom::Error::ProfileClassUnknown

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

Instance Method Summary collapse

Constructor Details

#initialize(clas = nil) ⇒ ProfileClassUnknown

Returns a new instance of ProfileClassUnknown.



2
3
4
5
# File 'lib/zoom/error/profile_class_unknown.rb', line 2

def initialize(clas = nil)
    super("Profile class unknown: #{clas}") if (clas)
    super("Profile class unknown") if (clas.nil?)
end