from werkzeug.exceptions import Unauthorized class AtlasException: description = None class AccountIsNotActive(Unauthorized, AtlasException): description = "The account is not active"