24 lines
340 B
Python
24 lines
340 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
##################
|
||
|
# ExceptionTypes #
|
||
|
##################
|
||
|
|
||
|
|
||
|
class ValidationError(Exception):
|
||
|
"""
|
||
|
Validation error exception
|
||
|
"""
|
||
|
|
||
|
|
||
|
class AuthError(Exception):
|
||
|
"""
|
||
|
Authentification error exception
|
||
|
"""
|
||
|
|
||
|
|
||
|
class AlreadyExists(Exception):
|
||
|
"""
|
||
|
Object already exists error exception
|
||
|
"""
|