-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmultrycatch.cpp
More file actions
50 lines (41 loc) · 1.17 KB
/
Copy pathmultrycatch.cpp
File metadata and controls
50 lines (41 loc) · 1.17 KB
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
#include<iostream>
using namespace std;
void test(int a)
{
try
{
if(a==1)
throw a; //throwing integer exception
else if(a==2)
throw 'A'; //throwing character exception
else if(a==3)
throw 4.5; //throwing float exception
}
catch(int a)
{
cout<<"\nInteger exception caught.";
throw;
}
catch(char ch)
{
cout<<"\nCharacter exception caught.";
throw;
}
catch(double d)
{
cout<<"\nDouble exception caught.";
throw;
}
cout<<"\nEnd of program.";
}
int main()
{
try{
test (2);
}
catch(...)
{
cout<< " \n caught rethrown exception in main";
}
return 0;
}