Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/quarantine/error.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
class Quarantine
class Error < StandardError; end

# Raised when a database error has occured
# Raised when a database error has occurred
# TODO(ezhu): expand error messages to cover more specific error messages
class DatabaseError < Error; end

# Raised when quarantine does not know how to upload a specific test
class UnknownUploadError < Error; end

# Quarantine does not work with the specificed database
# Quarantine does not work with the specified database
class UnsupportedDatabaseError < Error; end
end