Throwing multiple exceptions in c++. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Throwing multiple exceptions in c++.

How to throw multiple exception and handle them? Pls try to explain using a suitable example. I'm totally confused.

25th Nov 2018, 6:57 PM
Avinash Avi
Avinash Avi - avatar
6 Answers
26th Nov 2018, 2:57 PM
Ketan Lalcheta
Ketan Lalcheta - avatar
+ 4
Okay
27th Nov 2018, 7:04 AM
Avinash Avi
Avinash Avi - avatar
+ 3
Ok Ketan I saw your code and I got the concept too but I have a query..... Is there any meaning of those integer or float values. I mean u used 100 and 23.1f so do these values make any specific sense or we can take any value?
27th Nov 2018, 2:25 AM
Avinash Avi
Avinash Avi - avatar
+ 1
Avinash Avi it is random value I took... you can have any value...
27th Nov 2018, 7:02 AM
Ketan Lalcheta
Ketan Lalcheta - avatar
0
Ketan can you plz explain the significance of 'f' in 1.23f
3rd Mar 2019, 4:52 AM
Kanchi. sai Jyosthana
Kanchi. sai Jyosthana - avatar
0
sai for c++ , whole numbers are treated as int by default and real numbers are treated as double by default... for example, 12 is int by default and if we need compiler to consider this as long, we write 12L... 12.3 is real number nd compiler consider it as of double datatype by default... to treat it as float number, we need to explicitly tell this to compiler by putting f at the end of value...
3rd Mar 2019, 5:03 PM
Ketan Lalcheta
Ketan Lalcheta - avatar