Catch several exceptions : Catch Exceptions : Language Basics PYTHON examples


PYTHON examples » Language Basics » Catch Exceptions »

 

Catch several exceptions


Catch several exceptions

class MyError: pass

def oops():
    raise MyError()

def doomed():
    try:
        oops()
    except IndexError:
        print 'caught an index error!'
    except MyError, data:
        print 'caught error:', MyError, data
    else:
        print 'no error caught...'

if __name__ == '__main__':
    doomed()


           
       



Leave a Comment / Note


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


PYTHON examples

 Navioo Language Basics
» Catch Exceptions