Skip to content
This repository has been archived by the owner on Jul 14, 2020. It is now read-only.

Commit

Permalink
Order exceptions by alph letters
Browse files Browse the repository at this point in the history
Readability counts.
  • Loading branch information
Winnetou committed Nov 23, 2014
1 parent a53ebc7 commit 7d4665b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions mongokit/mongo_exceptions.py
Expand Up @@ -30,27 +30,27 @@
from pymongo.errors import OperationFailure


class ConnectionError(Exception):
class AutoReferenceError(Exception):
pass


class MongoAuthException(Exception):
class BadIndexError(Exception):
pass


class MultipleResultsFound(Exception):
class ConnectionError(Exception):
pass


class BadIndexError(Exception):
class MaxDocumentSizeError(Exception):
pass


class AutoReferenceError(Exception):
class MongoAuthException(Exception):
pass


class MaxDocumentSizeError(Exception):
class MultipleResultsFound(Exception):
pass


Expand Down

0 comments on commit 7d4665b

Please sign in to comment.