-
Notifications
You must be signed in to change notification settings - Fork 0
/
exception.js
157 lines (155 loc) · 2.78 KB
/
exception.js
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
// (function()
// {
// let result;
// try{
// result=x/10;
// }
// catch(error)
// {
// console.log(error.message);
// }
// })();
// (function()
// {
// let result;
// try{
// console.log(" ");
// console.log("An error will occur.")
// result=x/10;
// console.log("This line will never run.")
// }
// catch(error)
// {
// console.log("In the catch block "+error.message);
// }
// finally{
// console.log("In the finally block");
// }
// })();
// (function()
// {
// let result;
// let x=100;
// try{
// console.log(" ");
// console.log("An error won't occur.")
// result=x/10;
// }
// catch(error)
// {
// console.log("In the catch block "+error.message);
// }
// finally{
// console.log("In the finally block");
// }
// })();
// function throwError()
// {
// let result;
// try{
// result=x/10;
// }
// catch(error)
// {
// throw{
// "message":"In this the following error occured"+error.message,
// "name":"CustomError"
// };
// }
// }
// (function()
// {
// try{
// throwError();
// }
// catch(error)
// {
// console.log(error.message+ " -Error type" +error.name);
// }
// })();
function handleError(error)
{
switch(error.name)
{
case 'ReferenceError':
console.log('Reference Error: '+error.message);
break;
case 'RangeError':
console.log('Range Error: '+error.message);
break;
case 'TypeError':
console.log('Type Error: '+error.message);
break;
case 'URIError':
console.log('URI Error: '+error.message);
break;
case 'SyntaxError':
console.log('Syntax Error'+error.message);
break;
case 'EvalError':
console.log('Evaluation Error'+error.message);
break;
default:
console.log('Error Type:' +error.name+" Message: "+error.message);
break;
}
};
function referenceError()
{
let result;
try{
result = x/10;
}
catch (error)
{
handleError(error);
}
}
function rangeError()
{
let result = 0;
try{
result.toPrecision(200);
}
catch (error)
{
handleError(error);
}
}
function typeError()
{
let result = 0;
try{
result.toUpperCase();
}
catch (error)
{
handleError(error);
}
}
function uriError()
{
let uri = "http://www.netinc.com/path%%%/file name";
try{
decodeURI(uri);
}
catch (error)
{
handleError(error);
}
}
function syntaxError()
{
try{
let sum = eval("alert('Hello)");
}
catch (error)
{
handleError(error);
}
}
referenceError();
rangeError();
typeError();
uriError();
syntaxError();