Exception: Expire::UnknownRuleError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/expire/unknown_rule_error.rb

Overview

Thrown if a rule-name is not known

Instance Method Summary collapse

Constructor Details

#initialize(rule_name) ⇒ UnknownRuleError

Returns a new instance of UnknownRuleError.



6
7
8
# File 'lib/expire/unknown_rule_error.rb', line 6

def initialize(rule_name)
  super("unknown rule name \"#{rule_name}\"")
end