lib/roadie/errors.rb in roadie-3.0.1 vs lib/roadie/errors.rb in roadie-3.0.2
- old
+ new
@@ -4,14 +4,9 @@
#
# If Roadie raises an error that does not inherit this class, please report
# it as a bug.
class Error < RuntimeError; end
- # Raised when a declaration which cannot be parsed is encountered.
- #
- # A declaration is something like "font-size: 12pt;".
- class UnparseableDeclaration < Error; end
-
# Raised when Roadie encounters an invalid URL which cannot be parsed by
# Ruby's +URI+ class.
#
# This could be a hint that something in your HTML or CSS is broken.
class InvalidUrlPath < Error