+ def initialize(object = "object", object_id = "")
+ @object = object
+ @object_id = object_id
+
+ super("The #{object} with the id #{object_id} has already been deleted")
+ end
+
+ attr_reader :object, :object_id
+
+ def status
+ :gone
+ end
+ end
+
+ # Raised when the user logged in isn't the same as the changeset
+ class APIUserChangesetMismatchError < APIError
+ def initialize
+ super("The user doesn't own that changeset")
+ end
+
+ def status
+ :conflict
+ end
+ end
+
+ # Raised when the changeset provided is already closed
+ class APIChangesetAlreadyClosedError < APIError
+ def initialize(changeset)
+ @changeset = changeset
+
+ super("The changeset #{changeset.id} was closed at #{changeset.closed_at}")
+ end
+
+ attr_reader :changeset
+
+ def status
+ :conflict
+ end
+ end
+
+ # Raised when the changeset provided is not yet closed
+ class APIChangesetNotYetClosedError < APIError
+ def initialize(changeset)
+ @changeset = changeset
+
+ super("The changeset #{changeset.id} is not yet closed.")
+ end
+
+ attr_reader :changeset
+
+ def status
+ :conflict
+ end
+ end
+
+ # Raised when a user is already subscribed to the changeset
+ class APIChangesetAlreadySubscribedError < APIError
+ def initialize(changeset)
+ @changeset = changeset
+
+ super("You are already subscribed to changeset #{changeset.id}.")
+ end
+
+ attr_reader :changeset
+
+ def status
+ :conflict
+ end
+ end
+
+ # Raised when a user is not subscribed to the changeset
+ class APIChangesetNotSubscribedError < APIError
+ def initialize(changeset)
+ @changeset = changeset
+
+ super("You are not subscribed to changeset #{changeset.id}.")
+ end
+
+ attr_reader :changeset
+
+ def status
+ :not_found
+ end
+ end
+
+ # Raised when a change is expecting a changeset, but the changeset doesn't exist
+ class APIChangesetMissingError < APIError
+ def initialize
+ super("You need to supply a changeset to be able to make a change")
+ end
+
+ def status
+ :conflict
+ end
+ end
+
+ # Raised when a diff is uploaded containing many changeset IDs which don't match
+ # the changeset ID that the diff was uploaded to.
+ class APIChangesetMismatchError < APIError
+ def initialize(provided, allowed)
+ super("Changeset mismatch: Provided #{provided} but only #{allowed} is allowed")
+ end
+
+ def status
+ :conflict
+ end
+ end
+
+ # Raised when a diff upload has an unknown action. You can only have create,
+ # modify, or delete
+ class APIChangesetActionInvalid < APIError
+ def initialize(provided)
+ super("Unknown action #{provided}, choices are create, modify, delete")
+ end
+
+ def status
+ :bad_request
+ end
+ end
+
+ # Raised when bad XML is encountered which stops things parsing as
+ # they should.
+ class APIBadXMLError < APIError
+ def initialize(model, xml, message = "")
+ super("Cannot parse valid #{model} from xml string #{xml}. #{message}")
+ end
+
+ def status
+ :bad_request