| Server IP : 162.144.4.212 / Your IP : 216.73.216.108 Web Server : Apache System : Linux gator2125.hostgator.com 5.14.0-162.23.1.9991722448259.nf.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 31 18:11:45 UTC 2024 x86_64 User : cozeellc ( 2980) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/libexec/oracle-cloud-agent/plugins/osms/falcon/ |
Upload File : |
a
[��f� � @ s d Z G dd� de�ZdS )zHTTPStatus exception class.c @ s e Zd ZdZdZddd�ZdS )�
HTTPStatusa@ Represents a generic HTTP status.
Raise an instance of this class from a hook, middleware, or
responder to short-circuit request processing in a manner similar
to ``falcon.HTTPError``, but for non-error status codes.
Attributes:
status (str): HTTP status line, e.g. '748 Confounded by Ponies'.
headers (dict): Extra headers to add to the response.
body (str or unicode): String representing response content. If
Unicode, Falcon will encode as UTF-8 in the response.
Args:
status (str): HTTP status code and text, such as
'748 Confounded by Ponies'.
headers (dict): Extra headers to add to the response.
body (str or unicode): String representing response content. If
Unicode, Falcon will encode as UTF-8 in the response.
��status�headers�bodyNc C s || _ || _|| _d S )Nr )�selfr r r � r �v/sparta/input/_build_configuration/image_build+validate/lib/bmcenv/lib64/python3.9/site-packages/falcon/http_status.py�__init__- s zHTTPStatus.__init__)NN)�__name__�
__module__�__qualname__�__doc__� __slots__r r r r r r s r N)r
� Exceptionr r r r r �<module> s