lib/revision/errors.rb in revision-1.2.4 vs lib/revision/errors.rb in revision-1.2.6

- old
+ new

@@ -4,7 +4,12 @@ class NoDefinition < Base def initialize(root) super("No definition file (#{Releasable::CONFIG_FILE_NAME}) found at root #{root}") end end + class NotSpecified < Base + def initialize(key) + super("Key (#{key}) must be specifed in yaml OR passed as argument") + end + end end end