0_0_38761384_2244.cpp:24:47: error: ISO C++17 does not allow dynamic exception specifications
24 | friend Int operator/=(Int &, const Int &) throw(DividedByZeroException);
| ^~~~~
0_0_38761384_2244.cpp:25:47: error: ISO C++17 does not allow dynamic exception specifications
25 | friend Int operator%=(Int &, const Int &) throw(DividedByZeroException);
| ^~~~~
0_0_38761384_2244.cpp:29:52: error: ISO C++17 does not allow dynamic exception specifications
29 | friend Int operator/(const Int &, const Int &) throw(DividedByZeroException);
| ^~~~~
0_0_38761384_2244.cpp:30:52: error: ISO C++17 does not allow dynamic exception specifications
30 | friend Int operator%(const Int &, const Int &) throw(DividedByZeroException);
| ^~~~~
0_0_38761384_2244.cpp:306:42: error: ISO C++17 does not allow dynamic exception specifications
306 | Int operator/=(Int &op1, const Int &op2) throw(DividedByZeroException)
| ^~~~~
0_0_38761384_2244.cpp:339:42: error: ISO C++17 does not allow dynamic exception specifications
339 | Int operator%=(Int &op1, const Int &op2) throw(DividedByZeroException)
| ^~~~~
0_0_38761384_2244.cpp:361:47: error: ISO C++17 does not allow dynamic exception specifications
361 | Int operator/(const Int &op1, const Int &op2) throw(DividedByZeroException)
| ^~~~~
0_0_38761384_2244.cpp:367:47: error: ISO C++17 does not allow dynamic exception specifications
367 | Int operator%(const Int &op1, const Int &op2) throw(DividedByZeroException)
| ^~~~~
|