lib/gemfury/error.rb in gemfury-0.2.0 vs lib/gemfury/error.rb in gemfury-0.3.0
- old
+ new
@@ -5,6 +5,9 @@
# The Gemfury gem version doesn't match the one on the server
class InvalidGemVersion < Error; end
# Client#user_api_key is not defined or Gemfury returns 401
class Unauthorized < Error; end
+
+ # Returned if something is not found
+ class NotFound < Error; end
end