/usr/share/pyshared/pyepl/exceptions.py is in python-pyepl 1.1.0+git12-g365f8e3-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | # PyEPL: exceptions.py
#
# Copyright (C) 2003-2005 Michael J. Kahana
# Authors: Ian Schleifer, Per Sederberg, Aaron Geller, Josh Jacobs
# URL: http://memory.psych.upenn.edu/programming/pyepl
#
# Distributed under the terms of the GNU Lesser General Public License
# (LGPL). See the license.txt that came with this file.
"""
This module defines some base exceptions for PyEPL.
"""
import warnings
class EPLException(Exception):
    """
    Base exception class for PyEPL.
    """
    def __init__(self, desc):
        """
        Initialize exception with a description.
        """
        self.desc = desc
    def __str__(self):
        """
        Get a string representation of this exception.
        """
        return "EPL Exception: %s" % self.desc
class EPLError(EPLException):
    """
    Base class for PyEPL errors (i.e. normal execution cannot
    continue).
    """
    def __str__(self):
        """
        Get a string representation of this error.
        """
        return "EPL Error: %s" % self.desc
def eplWarn(message, category = UserWarning, stackLevel = 1):
    """
    Issue a warning.  Execution continues normally.
    """
    warnings.warn("EPL Warning: %s" % message, category, stackLevel + 1)
class EPLFatalError(EPLError):
    """
    An error so serious that execution cannot continue at all.
    """
    def __str__(self):
        """
        Get a string representation of this error.
        """
        return "EPL FATAL ERROR: %s" % self.desc
class BadFileExtension(EPLError):
    """
    Error indicating that a filename extension was not understood.
    """
    def __init__(self, ext):
        """
        Get a string representation of this error.
        """
        EPLError.__init__(self, "The file extension %s is not recognized in context." % ext);
 |