lib/filegen/exceptions.rb in filegen-0.4.1 vs lib/filegen/exceptions.rb in filegen-0.4.3

- old
+ new

@@ -14,7 +14,10 @@ # raised if one uses an invalid template name (missing erb) class TemplateNameIsInvalid < RuntimeError; end # raised if a given erb template has syntax errors in it class ErbTemplateHasSyntaxErrors < Exception; end + + # raised if yaml file cannot be found + class YamlFileNotFound < Exception; end end end