lib/sc4ry/exceptions.rb in sc4ry-0.1.7 vs lib/sc4ry/exceptions.rb in sc4ry-0.1.8
- old
+ new
@@ -5,7 +5,21 @@
super(msg)
end
end
+ class Sc4ryGenericError < StandardError
+ def initialize(msg)
+ super(msg)
+ end
+
+ end
+
+ class ConfigError < StandardError
+ def initialize(msg)
+ super(msg)
+ end
+
+ end
+
end
end
\ No newline at end of file