bedrock.exceptions.not_implemented_exception
1from .bedrock_exception import BedrockException 2 3 4class NotImplementedException(BedrockException): # pragma: unit 5 """ 6 Throw this exception when the client has requested a resource or action that is not implemented. 7 8 Default HTTP code: 501. 9 """ 10 def __init__(self, exception=None): 11 super().__init__("Not implemented", exception, error_code=501)
5class NotImplementedException(BedrockException): # pragma: unit 6 """ 7 Throw this exception when the client has requested a resource or action that is not implemented. 8 9 Default HTTP code: 501. 10 """ 11 def __init__(self, exception=None): 12 super().__init__("Not implemented", exception, error_code=501)
Throw this exception when the client has requested a resource or action that is not implemented.
Default HTTP code: 501.