altvmasterlist.exceptions

 1#!/usr/bin/env python3
 2
 3class FetchError(Exception):
 4    """There has been an error while fetching remote data."""
 5    pass
 6
 7
 8class NoPublicID(Exception):
 9    """No valid data got fetched."""
10    pass
class FetchError(builtins.Exception):
4class FetchError(Exception):
5    """There has been an error while fetching remote data."""
6    pass

There has been an error while fetching remote data.

class NoPublicID(builtins.Exception):
 9class NoPublicID(Exception):
10    """No valid data got fetched."""
11    pass

No valid data got fetched.