lib/active_notifier/errors.rb in active_notifier-0.1.0 vs lib/active_notifier/errors.rb in active_notifier-0.2.0
- old
+ new
@@ -1,22 +1,9 @@
module ActiveNotifier
- # 顶级错误
class Error < StandardError; end
-
- # 配置错误
class ConfigureError < Error; end
-
- # 模板未找到
class TemplateNotFoundError < Error; end
-
- # 消息为空
class MessageBlankError < Error; end
-
- # 适配器 type 无效
class AdapterTypeInvalidError < Error; end
-
- # 适配器 options 无效
class AdapterOptionsInvalidError < Error; end
-
- # Token 未定义
class UndefinedTokenError < Error; end
end