lib/io_streams/errors.rb in iostreams-1.2.1 vs lib/io_streams/errors.rb in iostreams-1.3.0

- old
+ new

@@ -16,7 +16,17 @@ end # When the specified delimiter is not found in the supplied stream / file class DelimiterNotFound < Error end + + # Fixed length line has the wrong length + class InvalidLineLength < Error + end + + class ValueTooLong < Error + end + + class InvalidLayout < Error + end end end