How to use switch case with throw in Dart

1 Answer

0 votes
main() {
    var n = 0;
    switch (n) {
        case 0:
            throw IntegerDivisionByZeroException();
        default:
            print("default");
    }
}





/*
run:

Unhandled exception:
IntegerDivisionByZeroException

*/

 



answered Oct 21, 2022 by avibootz

Related questions

3 answers 180 views
180 views asked Oct 21, 2022 by avibootz
1 answer 149 views
149 views asked Oct 8, 2022 by avibootz
2 answers 158 views
158 views asked Oct 21, 2022 by avibootz
1 answer 124 views
1 answer 191 views
1 answer 131 views
2 answers 170 views
...