lib/ezid/error.rb in ezid-client-1.3.0 vs lib/ezid/error.rb in ezid-client-1.4.0

- old
+ new

@@ -1,3 +1,11 @@ module Ezid class Error < ::RuntimeError; end + + # The requested identifier was not found + class IdentifierNotFoundError < Error; end + + # The requested action is not allowed + class NotAllowedError < Error; end + + class DeletionError < Error; end end