Validation Errors.
DeviceCodeAuthorizationUrlMissingError
¶
Bases: MissingConfigurationItemError
The OIDC Device Core Authorization URL is missing.
Source code in tenduke_core/exceptions/validation.py
29 30 31 32 33 34 | |
__init__()
¶
Construct an DeviceCodeAuthorizationUrlMissingError instance.
Source code in tenduke_core/exceptions/validation.py
32 33 34 | |
IdTokenMissingError
¶
Bases: ValueError
No id_token is present.
Source code in tenduke_core/exceptions/validation.py
53 54 55 56 57 58 | |
__init__()
¶
Construct an IdTokenMissingError instance.
Source code in tenduke_core/exceptions/validation.py
56 57 58 | |
InvalidArgumentError
¶
Bases: ValueError
The argument is missing or contains an invalid value.
Source code in tenduke_core/exceptions/validation.py
4 5 6 7 8 9 10 11 12 13 | |
__init__(name)
¶
Construct an InvalidArgumentError instance.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
name of the missing argument. |
required |
Source code in tenduke_core/exceptions/validation.py
7 8 9 10 11 12 13 | |
MissingConfigurationItemError
¶
Bases: ValueError
A required configuration item is missing.
Source code in tenduke_core/exceptions/validation.py
16 17 18 19 20 21 22 23 24 25 26 | |
__init__(name, key)
¶
Construct an MissingConfigurationItemError instance.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
name of the missing configuration argument. |
required |
key
|
str
|
key of the missing configuration argument. |
required |
Source code in tenduke_core/exceptions/validation.py
19 20 21 22 23 24 25 26 | |
TokenUrlMissingError
¶
Bases: MissingConfigurationItemError
The OIDC Token URL is missing.
Source code in tenduke_core/exceptions/validation.py
37 38 39 40 41 42 | |
__init__()
¶
Construct an TokenUrlMissingError instance.
Source code in tenduke_core/exceptions/validation.py
40 41 42 | |
UserInfoUrlMissingError
¶
Bases: MissingConfigurationItemError
The OIDC User Info URL is missing.
Source code in tenduke_core/exceptions/validation.py
45 46 47 48 49 50 | |
__init__()
¶
Construct an UserInfoUrlMissingError instance.
Source code in tenduke_core/exceptions/validation.py
48 49 50 | |