/usr/share/pyshared/flot/exception.py is in python-pyflot 0.2-1.
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 | class MissingDataException(Exception):
"""This exception should be raised, when initializing a Series object
no data is found either in` data` or both x and y axis points"""
class MissingAxisException(Exception):
"""This exception should be raise when a Series object doesn't have some
axis information
"""
class MultipleAxisException(Exception):
"""This exception should be raise when repeated axis are found on the same
Series object"""
class DuplicateLabelException(Exception):
""
class SeriesInvalidOptionException(Exception):
""
|