/usr/lib/python3/dist-packages/agate/exceptions.py is in python3-agate 1.6.0-3.
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 | #!/usr/bin/env python
"""
This module contains various exceptions raised by agate.
"""
class DataTypeError(TypeError): # pragma: no cover
"""
A calculation was attempted with an invalid :class:`.DataType`.
"""
pass
class UnsupportedAggregationError(TypeError): # pragma: no cover
"""
An :class:`.Aggregation` was attempted which is not supported.
For example, if a :class:`.Percentiles` is applied to a :class:`.TableSet`.
"""
pass
class CastError(Exception): # pragma: no cover
"""
A column value can not be cast to the correct type.
"""
pass
class FieldSizeLimitError(Exception): # pragma: no cover
"""
A field in a CSV file exceeds the maximum length.
This length may be the default or one set by the user.
"""
def __init__(self, limit):
super(FieldSizeLimitError, self).__init__(
'CSV contains fields longer than maximum length of %i characters. Try raising the maximum with the field_size_limit parameter, or try setting quoting=csv.QUOTE_NONE.' % limit
)
|