lib/lens_protocol/errors.rb in lens_protocol-0.1.3 vs lib/lens_protocol/errors.rb in lens_protocol-0.2.0
- old
+ new
@@ -5,6 +5,9 @@
class ParsingError < Error
def initialize msg = 'Parsing failed', line = 'N/A'
super "#{msg}\n Line: #{line}"
end
end
+
+ class ValidationError < Error
+ end
end