lib/blueprints/errors.rb in blueprints-0.3.4 vs lib/blueprints/errors.rb in blueprints-0.4.0

- old
+ new

@@ -1,11 +1,12 @@ module Blueprints + # Is raised when blueprint or namespace is not found. class PlanNotFoundError < NameError def initialize(*args) @plans = args end def to_s "Plan/namespace not found '#{@plans.join(',')}'" end end -end \ No newline at end of file +end