| 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�< � @ sn d Z ddlmZ ddlmZ ddlmZmZmZ ddlm Z
G dd� de�ZG dd � d e�ZG d
d� de�Z
G dd
� d
ee�ZG dd� dee�ZG dd� de�ZG dd� de�ZG dd� dee�ZG dd� de�ZG dd� de�ZG dd� de�ZG dd� de�ZG dd� de�ZG d d!� d!ee�ZG d"d#� d#e�ZG d$d%� d%ee�ZG d&d'� d'ee�ZG d(d)� d)e�ZG d*d+� d+e�ZG d,d-� d-e�ZG d.d/� d/ee�ZG d0d1� d1e�Z G d2d3� d3e�Z!G d4d5� d5e�Z"G d6d7� d7e�Z#G d8d9� d9e�Z$G d:d;� d;e�Z%G d<d=� d=e�Z&G d>d?� d?e�Z'G d@dA� dAe�Z(G dBdC� dCe�Z)G dDdE� dEe�Z*G dFdG� dGe�Z+G dHdI� dIe�Z,dS )Ja HTTP error classes.
This module implements a collection of `falcon.HTTPError`
specializations that can be raised to generate a 4xx or 5xx HTTP
response. All classes are available directly from the `falcon`
package namespace::
import falcon
class MessageResource(object):
def on_get(self, req, resp):
# ...
raise falcon.HTTPBadRequest(
'TTL Out of Range',
'The message's TTL must be between 60 and 300 seconds, inclusive.'
)
# ...
� )�datetime)�util)� HTTPError�NoRepresentation�OptionalRepresentationNc s"