| Class | Mack::Errors::XmppError |
| In: |
lib/mack-notifier/errors.rb
|
| Parent: | StandardError |
| error_hash | [RW] |
# File lib/mack-notifier/errors.rb, line 11
11: def initialize(msg)
12: super(msg)
13: self.error_hash = {}
14: end
# File lib/mack-notifier/errors.rb, line 16
16: def add_error(type, msg)
17: self.error_hash[type] ||= []
18: self.error_hash[type] << msg
19: end