MythTV  master
dailymotion_exceptions.py
Go to the documentation of this file.
1 # -*- coding: UTF-8 -*-
2 
3 # ----------------------
4 # Name: dailymotion_exceptions - Custom exceptions used or raised by dailymotion_api
5 # Python Script
6 # Author: R.D. Vaughan
7 # Purpose: Custom exceptions used or raised by dailymotion_api
8 #
9 # License:Creative Commons GNU GPL v2
10 # (http://creativecommons.org/licenses/GPL/2.0/)
11 #-------------------------------------
12 __title__ ="dailymotion_exceptions - Custom exceptions used or raised by dailymotion_api";
13 __author__="R.D. Vaughan"
14 __version__="v0.2.0"
15 # 0.1.0 Initial development
16 # 0.1.2 Documentation update
17 # 0.2.0 Public release
18 
19 __all__ = ["DailymotionUrlError", "DailymotionHttpError", "DailymotionRssError", "DailymotionVideoNotFound", "DailymotionInvalidSearchType", "DailymotionXmlError", "DailymotionVideoDetailError", "DailymotionCategoryNotFound", ]
20 
21 class DailymotionBaseError(Exception):
22  pass
23 
25  def __repr__(self): # Display the type of error
26  return None
27  # end __repr__
28 
30  def __repr__(self): # Display the type of error
31  return None
32  # end __repr__
33 
35  def __repr__(self):
36  return None
37  # end __repr__
38 
40  def __repr__(self):
41  return None
42  # end __repr__
43 
45  def __repr__(self):
46  return None
47  # end __repr__
48 
50  def __repr__(self):
51  return None
52  # end __repr__
53 
55  def __repr__(self):
56  return None
57  # end __repr__
58 
60  def __repr__(self):
61  return None
62  # end __repr__
nv_python_libs.dailymotion.dailymotion_exceptions.DailymotionUrlError.__repr__
def __repr__(self)
Definition: dailymotion_exceptions.py:25
nv_python_libs.dailymotion.dailymotion_exceptions.DailymotionXmlError.__repr__
def __repr__(self)
Definition: dailymotion_exceptions.py:50
nv_python_libs.dailymotion.dailymotion_exceptions.DailymotionBaseError
Definition: dailymotion_exceptions.py:21
nv_python_libs.dailymotion.dailymotion_exceptions.DailymotionCategoryNotFound
Definition: dailymotion_exceptions.py:59
nv_python_libs.dailymotion.dailymotion_exceptions.DailymotionUrlError
Definition: dailymotion_exceptions.py:24
nv_python_libs.dailymotion.dailymotion_exceptions.DailymotionInvalidSearchType
Definition: dailymotion_exceptions.py:44
nv_python_libs.dailymotion.dailymotion_exceptions.DailymotionVideoNotFound
Definition: dailymotion_exceptions.py:39
nv_python_libs.dailymotion.dailymotion_exceptions.DailymotionInvalidSearchType.__repr__
def __repr__(self)
Definition: dailymotion_exceptions.py:45
nv_python_libs.dailymotion.dailymotion_exceptions.DailymotionRssError.__repr__
def __repr__(self)
Definition: dailymotion_exceptions.py:35
nv_python_libs.dailymotion.dailymotion_exceptions.DailymotionVideoDetailError.__repr__
def __repr__(self)
Definition: dailymotion_exceptions.py:55
nv_python_libs.dailymotion.dailymotion_exceptions.DailymotionCategoryNotFound.__repr__
def __repr__(self)
Definition: dailymotion_exceptions.py:60
nv_python_libs.dailymotion.dailymotion_exceptions.DailymotionVideoNotFound.__repr__
def __repr__(self)
Definition: dailymotion_exceptions.py:40
nv_python_libs.dailymotion.dailymotion_exceptions.DailymotionXmlError
Definition: dailymotion_exceptions.py:49
nv_python_libs.dailymotion.dailymotion_exceptions.DailymotionRssError
Definition: dailymotion_exceptions.py:34
nv_python_libs.dailymotion.dailymotion_exceptions.DailymotionHttpError.__repr__
def __repr__(self)
Definition: dailymotion_exceptions.py:30
nv_python_libs.dailymotion.dailymotion_exceptions.DailymotionVideoDetailError
Definition: dailymotion_exceptions.py:54
nv_python_libs.dailymotion.dailymotion_exceptions.DailymotionHttpError
Definition: dailymotion_exceptions.py:29