lib/regexp-examples/exceptions.rb in regexp-examples-0.3.2 vs lib/regexp-examples/exceptions.rb in regexp-examples-0.4.0

- old
+ new

@@ -1,5 +1,6 @@ module RegexpExamples class Error < StandardError; end class UnsupportedSyntaxError < Error; end class IllegalSyntaxError < Error; end + class BackrefNotFound < Error; end end