PNG  IHDR* pHYs+ IDATx]n#; cdLb Ǚ[at¤_:uP}>!Usă cag޿ ֵNu`ݼTâabO7uL&y^wFٝA"l[|ŲHLN밪4*sG3|Dv}?+y߉{OuOAt4Jj.u]Gz*҉sP'VQKbA1u\`& Af;HWj hsO;ogTu uj7S3/QzUr&wS`M$X_L7r2;aE+ώ%vikDA:dR+%KzƉo>eOth$z%: :{WwaQ:wz%4foɹE[9<]#ERINƻv溂E%P1i01 |Jvҗ&{b?9g=^wζXn/lK::90KwrюO\!ջ3uzuGv^;騢wq<Iatv09:tt~hEG`v;3@MNZD.1]L:{ծI3`L(÷ba")Y.iljCɄae#I"1 `3*Bdz>j<fU40⨬%O$3cGt]j%Fߠ_twJ;ABU8vP3uEԑwQ V:h%))LfraqX-ۿX]v-\9I gl8tzX ]ecm)-cgʒ#Uw=Wlێn(0hPP/ӨtQ“&J35 $=]r1{tLuǮ*i0_;NƝ8;-vݏr8+U-kruȕYr0RnC]*ެ(M:]gE;{]tg(#ZJ9y>utRDRMdr9㪩̞zֹb<ģ&wzJM"iI( .ꮅX)Qw:9,i좜\Ԛi7&N0:asϓc];=ΗOӣ APqz93 y $)A*kVHZwBƺnWNaby>XMN*45~ղM6Nvm;A=jֲ.~1}(9`KJ/V F9[=`~[;sRuk]rєT!)iQO)Y$V ی ۤmzWz5IM Zb )ˆC`6 rRa}qNmUfDsWuˤV{ Pݝ'=Kֳbg,UҘVz2ﴻnjNgBb{? ߮tcsͻQuxVCIY۠:(V뺕 ٥2;t`@Fo{Z9`;]wMzU~%UA蛚dI vGq\r82iu +St`cR.6U/M9IENDB` REDROOM
PHP 5.6.40
Preview: errors.py Size: 3.49 KB
/lib64/python3.6/distutils/errors.py

"""distutils.errors

Provides exceptions used by the Distutils modules.  Note that Distutils
modules may raise standard exceptions; in particular, SystemExit is
usually raised for errors that are obviously the end-user's fault
(eg. bad command-line arguments).

This module is safe to use in "from ... import *" mode; it only exports
symbols whose names start with "Distutils" and end with "Error"."""

class DistutilsError (Exception):
    """The root of all Distutils evil."""
    pass

class DistutilsModuleError (DistutilsError):
    """Unable to load an expected module, or to find an expected class
    within some module (in particular, command modules and classes)."""
    pass

class DistutilsClassError (DistutilsError):
    """Some command class (or possibly distribution class, if anyone
    feels a need to subclass Distribution) is found not to be holding
    up its end of the bargain, ie. implementing some part of the
    "command "interface."""
    pass

class DistutilsGetoptError (DistutilsError):
    """The option table provided to 'fancy_getopt()' is bogus."""
    pass

class DistutilsArgError (DistutilsError):
    """Raised by fancy_getopt in response to getopt.error -- ie. an
    error in the command line usage."""
    pass

class DistutilsFileError (DistutilsError):
    """Any problems in the filesystem: expected file not found, etc.
    Typically this is for problems that we detect before OSError
    could be raised."""
    pass

class DistutilsOptionError (DistutilsError):
    """Syntactic/semantic errors in command options, such as use of
    mutually conflicting options, or inconsistent options,
    badly-spelled values, etc.  No distinction is made between option
    values originating in the setup script, the command line, config
    files, or what-have-you -- but if we *know* something originated in
    the setup script, we'll raise DistutilsSetupError instead."""
    pass

class DistutilsSetupError (DistutilsError):
    """For errors that can be definitely blamed on the setup script,
    such as invalid keyword arguments to 'setup()'."""
    pass

class DistutilsPlatformError (DistutilsError):
    """We don't know how to do something on the current platform (but
    we do know how to do it on some platform) -- eg. trying to compile
    C files on a platform not supported by a CCompiler subclass."""
    pass

class DistutilsExecError (DistutilsError):
    """Any problems executing an external program (such as the C
    compiler, when compiling C files)."""
    pass

class DistutilsInternalError (DistutilsError):
    """Internal inconsistencies or impossibilities (obviously, this
    should never be seen if the code is working!)."""
    pass

class DistutilsTemplateError (DistutilsError):
    """Syntax error in a file list template."""

class DistutilsByteCompileError(DistutilsError):
    """Byte compile error."""

# Exception classes used by the CCompiler implementation classes
class CCompilerError (Exception):
    """Some compile/link operation failed."""

class PreprocessError (CCompilerError):
    """Failure to preprocess one or more C/C++ files."""

class CompileError (CCompilerError):
    """Failure to compile one or more C/C++ source files."""

class LibError (CCompilerError):
    """Failure to create a static library from one or more C/C++ object
    files."""

class LinkError (CCompilerError):
    """Failure to link one or more C/C++ object files into an executable
    or shared library file."""

class UnknownFileError (CCompilerError):
    """Attempt to process an unknown file type."""

Directory Contents

Dirs: 2 × Files: 29

Name Size Perms Modified Actions
command DIR
- drwxr-xr-x 2026-02-06 23:01:23
Edit Download
- drwxr-xr-x 2026-02-06 23:01:23
Edit Download
8.32 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
14.58 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
46.30 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
18.68 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
4.77 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
8.67 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
16.09 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
139 B lrw-r--r-- 2018-12-23 21:37:14
Edit Download
3.41 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
7.60 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
48.53 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
3.49 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
10.27 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
17.37 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
12.53 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
7.96 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
1.92 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
29.89 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
23.02 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
295 B lrw-r--r-- 2018-12-23 21:37:14
Edit Download
7.25 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
19.70 KB lrw-r--r-- 2026-02-05 20:05:18
Edit Download
12.19 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
14.63 KB lrw-r--r-- 2026-02-05 20:00:12
Edit Download
20.30 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
12.06 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
5.01 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
21.07 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
236 B lrw-r--r-- 2018-12-23 21:37:14
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).
© 2026 REDROOM — Secure File Manager. All rights reserved. Built with ❤️ & Red Dark UI