home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.6)
-
-
- class ISAPIError(Exception):
-
- def __init__(self, errno, strerror = None, funcname = None):
- 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()
- self.strerror = 'no error message is available'
-
-
- return str((self.errno, self.strerror, self.funcname))
-
-
-
- class FilterError(ISAPIError):
- pass
-
-
- class ExtensionError(ISAPIError):
- pass
-
-
- class InternalReloadException(Exception):
- pass
-
-