This file is indexed.

/usr/lib/python3/dist-packages/booleanOperations/exceptions.py is in python3-booleanoperations 0.8.0-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
23
24
25
from __future__ import print_function, division, absolute_import


class BooleanOperationsError(Exception):
    """Base BooleanOperations exception"""


class InvalidContourError(BooleanOperationsError):
    """Raised when any input contour is invalid"""


class InvalidSubjectContourError(InvalidContourError):
    """Raised when a 'subject' contour is not valid"""


class InvalidClippingContourError(InvalidContourError):
    """Raised when a 'clipping' contour is not valid"""


class OpenContourError(BooleanOperationsError):
    """Raised when any input contour is open"""


class ExecutionError(BooleanOperationsError):
    """Raised when clipping execution fails"""