# -*- coding: utf-8 -*- ################## # ExceptionTypes # ################## class ValidationError(Exception): """ Validation error exception """ class AuthError(Exception): """ Authentification error exception """ class AlreadyExists(Exception): """ Object already exists error exception """