File size: 199 Bytes
345855e
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class PublisherError(Exception):
    pass


class PlatformAuthError(PublisherError):
    pass


class PlatformUploadError(PublisherError):
    pass


class PlatformRateLimit(PublisherError):
    pass