Files
tuir/rtv/exceptions.py
2015-10-14 23:25:50 -07:00

27 lines
502 B
Python

class EscapeInterrupt(Exception):
"Signal that the ESC key has been pressed"
class RTVError(Exception):
"Base RTV error class"
class AccountError(RTVError):
"Could not access user account"
class SubmissionError(RTVError):
"Submission could not be loaded"
class SubredditError(RTVError):
"Subreddit could not be reached"
class SubscriptionError(RTVError):
"Subscriptions could not be fetched"
class ProgramError(RTVError):
"Problem executing an external program"