forked from edyoda/python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexception.py
107 lines (66 loc) · 1.56 KB
/
exception.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# try :
# f = open("test.txt", "w")
# f.write("Hello this is exception example")
# except IOError :
# print "Error in writing"
# else :
# print "Successfully Written"
# f.close()
# try :
# f = open("test.txt", "r")
# f.write("hello")
# except (IOError , ZeroDivisionError):
# print "Error : cant write into the file"
# else :
# print "Successfully written"
# f.close()
# try :
# f = open("test.txt", "r")
# f.write("hello")
# a=5
# b=5/0
# except (IOError , ZeroDivisionError):
# print "Error : cant write into the file"
# print "Trying to divide by zero"
# else :
# print "Successfully written"
# f.close()
# try :
# f = open("test.txt", "r")
# f.write("hello")
# a=5
# b=5/0
# except IOError:
# print "Error : cant write into the file "
# print "Trying to divide by zero"
# finally :
# print "Successfully written"
# f.close()
# try :
# f = open("test.txt", "r")
# f.write("hello")
# except IOError, argument :
# print "Error : cant write into the file : ", argument
# print "Trying to divide by zero"
# finally :
# print "Successfully written"
# f.close()
# try :
# raise NameError("Hello this is name error exception")
# except NameError:
# print "Exception 1"
# raise
# class NError (Exception):
# def _init_(self, arg):
# self.arg=arg
# try :
# raise NError(5)
# except NError , e:
# print e.arg
# class MyError(Exception):
# def __init__(self, value):
# self.value = value
# try:
# raise MyError("hello")
# except MyError , e:
# print 'My exception occurred, value:', e.value