lib/active_notifier/errors.rb in active_notifier-0.3.0 vs lib/active_notifier/errors.rb in active_notifier-0.4.0
- old
+ new
@@ -1,9 +1,11 @@
module ActiveNotifier
class Error < StandardError; end
+
class ConfigureError < Error; end
+
class TemplateNotFoundError < Error; end
- class MessageBlankError < Error; end
- class AdapterTypeInvalidError < Error; end
- class AdapterOptionsInvalidError < Error; end
+
class UndefinedTokenError < Error; end
+
+ class AdapterError < Error; end
end