Exceptions
JobException
Bases: Exception
Exception raised when an error occurred while processing a job
Source code in src/mmisp/worker/exceptions/job_exceptions.py
4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
|
JobHasNoResultException
Bases: Exception
Exception raised when a requested job has no result that can be returned
Source code in src/mmisp/worker/exceptions/job_exceptions.py
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
|
JobNotFinishedException
Bases: Exception
Exception raised when a requested job is not finished yet
Source code in src/mmisp/worker/exceptions/job_exceptions.py
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
|
NotExistentJobException
Bases: Exception
Exception raised when a requested job does not exist
Source code in src/mmisp/worker/exceptions/job_exceptions.py
20 21 22 23 24 25 26 27 28 29 30 31 |
|
EnvVariableNotFound
Bases: Exception
Exception raised when an environment variable is not found
Source code in src/mmisp/worker/exceptions/environment_exceptions.py
4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
|
APIException
Bases: Exception
Exception raised when an error occurred while processing an API request
Source code in src/mmisp/worker/exceptions/misp_api_exceptions.py
4 5 6 7 8 9 10 11 |
|
InvalidAPIResponse
Bases: Exception
Exception raised when an API response is not valid
Source code in src/mmisp/worker/exceptions/misp_api_exceptions.py
14 15 16 17 18 19 20 21 |
|
ForbiddenByServerSettings
Bases: Exception
Exception raised when a requested action was denied by another servers settings
Source code in src/mmisp/worker/exceptions/server_exceptions.py
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
|
InvalidServerVersion
Bases: Exception
Exception raised when a server has an invalid version
Source code in src/mmisp/worker/exceptions/server_exceptions.py
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
|
ServerNotReachable
Bases: Exception
Exception raised when a server is not reachable
Source code in src/mmisp/worker/exceptions/server_exceptions.py
21 22 23 24 25 26 27 28 29 30 31 |
|