lib/letsfreckle/error.rb in letsfreckle-client-0.1.2 vs lib/letsfreckle/error.rb in letsfreckle-client-0.2.0
- old
+ new
@@ -1,6 +1,5 @@
module LetsFreckle
- class FetchError < StandardError
- end
- class CreateError < StandardError
- end
-end
\ No newline at end of file
+ class Error < StandardError; end
+ class FetchError < Error; end
+ class CreateError < Error; end
+end