User-defined Exceptions : Exception Class : Exception PYTHON examples


PYTHON examples » Exception » Exception Class »

 

User-defined Exceptions


User-defined Exceptions: Name their own exceptions by creating a new exception class



#Exceptions should typically be derived from the Exception class, either directly or 
#indirectly. For example:

class MyError(Exception):
     def __init__(self, value):
         self.value = value
     def __str__(self):
         return repr(self.value)
 
try:
     raise MyError(2*2)
except MyError, e:
     print 'My exception occurred, value:', e.value
 


           
       



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo Exception
» Exception Class