lib/review/exception.rb in review-5.0.0 vs lib/review/exception.rb in review-5.1.0
- old
+ new
@@ -8,12 +8,18 @@
# For details of the GNU LGPL, see the file "COPYING".
#
module ReVIEW
class Error < ::StandardError; end
+
class ApplicationError < Error; end
+
class ConfigError < ApplicationError; end
+
class CompileError < ApplicationError; end
+
class SyntaxError < CompileError; end
+
class FileNotFound < ApplicationError; end
+
class KeyError < CompileError; end
end