lib/active_notifier/errors.rb in active_notifier-0.1.0.pre vs lib/active_notifier/errors.rb in active_notifier-0.1.0
- old
+ new
@@ -6,20 +6,17 @@
class ConfigureError < Error; end
# 模板未找到
class TemplateNotFoundError < Error; end
- # 使用未定义 channel
- class ChannelUndefinedError < Error; end
-
# 消息为空
class MessageBlankError < Error; end
- # 适配器 webhook 无效
- class AdapterWebhookInvalidError < Error; end
-
# 适配器 type 无效
class AdapterTypeInvalidError < Error; end
# 适配器 options 无效
class AdapterOptionsInvalidError < Error; end
+
+ # Token 未定义
+ class UndefinedTokenError < Error; end
end