MythTV  master
thewb_exceptions.py
Go to the documentation of this file.
1 # -*- coding: UTF-8 -*-
2 
3 # ----------------------
4 # Name: thewb_exceptions - Custom exceptions used or raised by thewb_api
5 # Python Script
6 # Author: R.D. Vaughan
7 # Purpose: Custom exceptions used or raised by thewb_api
8 #
9 # License:Creative Commons GNU GPL v2
10 # (http://creativecommons.org/licenses/GPL/2.0/)
11 #-------------------------------------
12 __title__ ="thewb_exceptions - Custom exceptions used or raised by thewb_api";
13 __author__="R.D. Vaughan"
14 __version__="v0.1.0"
15 # 0.1.0 Initial development
16 
17 __all__ = ["TheWBUrlError", "TheWBHttpError", "TheWBRssError", "TheWBVideoNotFound", "TheWBConfigFileError", "TheWBUrlDownloadError"]
18 
19 class TheWBBaseError(Exception):
20  pass
21 
23  def __repr__(self): # Display the type of error
24  return None
25  # end __repr__
26 
28  def __repr__(self): # Display the type of error
29  return None
30  # end __repr__
31 
33  def __repr__(self):
34  return None
35  # end __repr__
36 
38  def __repr__(self):
39  return None
40  # end __repr__
41 
43  def __repr__(self):
44  return None
45  # end __repr__
46 
48  def __repr__(self):
49  return None
50  # end __repr__
nv_python_libs.thewb.thewb_exceptions.TheWBRssError
Definition: thewb_exceptions.py:32
nv_python_libs.thewb.thewb_exceptions.TheWBVideoNotFound.__repr__
def __repr__(self)
Definition: thewb_exceptions.py:38
nv_python_libs.thewb.thewb_exceptions.TheWBUrlDownloadError.__repr__
def __repr__(self)
Definition: thewb_exceptions.py:48
nv_python_libs.thewb.thewb_exceptions.TheWBUrlError.__repr__
def __repr__(self)
Definition: thewb_exceptions.py:23
nv_python_libs.thewb.thewb_exceptions.TheWBConfigFileError.__repr__
def __repr__(self)
Definition: thewb_exceptions.py:43
nv_python_libs.thewb.thewb_exceptions.TheWBBaseError
Definition: thewb_exceptions.py:19
nv_python_libs.thewb.thewb_exceptions.TheWBConfigFileError
Definition: thewb_exceptions.py:42
nv_python_libs.thewb.thewb_exceptions.TheWBVideoNotFound
Definition: thewb_exceptions.py:37
nv_python_libs.thewb.thewb_exceptions.TheWBRssError.__repr__
def __repr__(self)
Definition: thewb_exceptions.py:33
nv_python_libs.thewb.thewb_exceptions.TheWBHttpError
Definition: thewb_exceptions.py:27
nv_python_libs.thewb.thewb_exceptions.TheWBUrlError
Definition: thewb_exceptions.py:22
nv_python_libs.thewb.thewb_exceptions.TheWBUrlDownloadError
Definition: thewb_exceptions.py:47
nv_python_libs.thewb.thewb_exceptions.TheWBHttpError.__repr__
def __repr__(self)
Definition: thewb_exceptions.py:28