This file is indexed.

/usr/lib/python3/dist-packages/subliminal/exceptions.py is in python3-subliminal 0.7.4-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
26
27
# -*- coding: utf-8 -*-
from __future__ import unicode_literals


class Error(Exception):
    """Base class for exceptions in subliminal"""
    pass


class ProviderError(Error):
    """Exception raised by providers"""
    pass


class ProviderConfigurationError(ProviderError):
    """Exception raised by providers when badly configured"""
    pass


class ProviderNotAvailable(ProviderError):
    """Exception raised by providers when unavailable"""
    pass


class InvalidSubtitle(ProviderError):
    """Exception raised by providers when the downloaded subtitle is invalid"""
    pass