lib/brochure/errors.rb in brochure-0.5.0 vs lib/brochure/errors.rb in brochure-0.5.1
- old
+ new
@@ -1,3 +1,5 @@
module Brochure
- class TemplateNotFound < StandardError; end
+ class Error < ::StandardError; end
+ class TemplateNotFound < Error; end
+ class CaptureNotSupported < Error; end
end