Fixes #10
[diaspy.git] / diaspy / errors.py
CommitLineData
22422846
MM
1#!/usr/bin/env python3
2
39af9756
MM
3"""This module contains custom exceptions that are raised by diaspy.
4These are not described by DIASPORA* protocol as exceptions that should be
5raised by API implementations but are specific to this particular implementation.
6
7If your program should catch all exceptions raised by diaspy and
8does not need to handle them specifically you can use following code:
9
10 # this line imports all errors
11 from diaspy.errors import *
12
13 try:
14 # your code...
15 except DiaspyError as e:
16 # your error handling code...
17 finally:
18 # closing code...
19"""
20
21import warnings
22
22422846
MM
23
24class DiaspyError(Exception):
25 """Base exception for all errors
26 raised by diaspy.
27 """
28 pass
29
30
31class LoginError(DiaspyError):
32 """Exception raised when something
33 bad happens while performing actions
34 related to logging in.
35 """
36 pass
37
38
39af9756 39class TokenError(DiaspyError):
2cf8467c
MM
40 pass
41
42
d84905af
MM
43class DataError(DiaspyError):
44 pass
45
46
47class InvalidDataError(DataError):
48 pass
49
50
51class KeyMissingFromFetchedData(InvalidDataError):
52 pass
53
54
65b1f099
MM
55class UserError(DiaspyError):
56 """Exception raised when something related to users goes wrong.
57 """
58 pass
59
60
615edb73
MM
61class InvalidHandleError(DiaspyError):
62 """Raised when invalid handle is found.
63 """
64 pass
65
66
7c6fbe5b 67class SearchError(DiaspyError):
1530cc84
MM
68 """Exception raised when something related to search goes wrong.
69 """
70 pass
71
72
7ebc8b0d
MM
73class ConversationError(DiaspyError):
74 """Exception raised when something related to conversations goes wrong.
75 """
76 pass
77
78
9896b779
MM
79class AspectError(DiaspyError):
80 """Exception raised when something related to aspects goes wrong.
81 """
82 pass
83
84
fe2181b4
MM
85class PostError(DiaspyError):
86 """Exception raised when something related to posts goes wrong.
87 """
88 pass
89
90
78cc478a
MM
91class StreamError(DiaspyError):
92 """Exception raised when something related to streams goes wrong.
93 """
7c6fbe5b
MM
94 pass
95
96
f50cbea3
MM
97class SettingsError(DiaspyError):
98 """Exception raised when something related to settings goes wrong.
99 """
100 pass
101
102
22422846 103def react(r, message='', accepted=[200, 201, 202, 203, 204, 205, 206], exception=DiaspyError):
2dbc82fe 104 """This method tries to decide how to react
22422846
MM
105 to a response code passed to it. If it's an
106 error code it will raise an exception (it will
107 call `throw()` method.
108
109 If response code is not accepted AND cannot
110 be matched to any exception, generic exception
111 (DiaspyError) is raised (provided that `exception`
112 param was left untouched).
113
114 By default `accepted` param contains all HTTP
115 success codes.
116
117 User can force type of exception to raise by passing
118 `exception` param.
119
120 :param r: response code
121 :type r: int
122 :param message: message for the exception
123 :type message: str
124 :param accepted: list of accepted error codes
125 :type accepted: list
126 :param exception: preferred exception to raise
127 :type exception: valid exception type (default: DiaspyError)
128 """
39af9756 129 warnings.warn(DeprecationWarning)
22422846
MM
130 if r in accepted: e = None
131 else: e = DiaspyError
132
133 if e is not None: e = exception
134 throw(e, message=message)
135
136
137def throw(e, message=''):
138 """This function throws an error with given message.
139 If None is passed as `e` throw() will not raise
140 anything.
141
142 :param e: exception to throw
143 :type e: any valid exception type or None
144 :param message: message for exception
145 :type message: str
146 """
39af9756 147 warnings.warn(DeprecationWarning)
22422846
MM
148 if e is None: pass
149 else: raise e(message)