Exception: Zoom::Error::ProfileClassUnknown
- Inherits:
-
Zoom::Error
- Object
- RuntimeError
- Zoom::Error
- Zoom::Error::ProfileClassUnknown
- Defined in:
- lib/zoom/error/profile_class_unknown.rb
Instance Method Summary collapse
-
#initialize(clas = nil) ⇒ ProfileClassUnknown
constructor
A new instance of ProfileClassUnknown.
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 |