cf/mirror

Try and Catch

CF
195C1800· expert2s256 MB⌨ stdin/stdout

Examples

Sample 1of 3
Input
8
try
try
throw ( AE )
catch ( BE, "BE in line 3")
 
try
catch(AE, "AE in line 5")
catch(AE,"AE somewhere")
Output
AE somewhere
Sample 2of 3
Input
8
try
try
throw ( AE )
catch ( AE, "AE in line 3")
 
try
catch(BE, "BE in line 5")
catch(AE,"AE somewhere")
Output
AE in line 3
Sample 3of 3
Input
8
try
try
throw ( CE )
catch ( BE, "BE in line 3")
 
try
catch(AE, "AE in line 5")
catch(AE,"AE somewhere")
Output
Unhandled Exception
195C.cpp
loading editor…
Ln 11·137 BGNU C++20 (64)