+ 4
What is checked and unchecked exception ?
3 Antworten
+ 4
checked exception are compile time errors, that means compiler check the exceptions in compilation time. Unchecked exception are run time errors, these are not checked by the compiler, these exceptions are only noticed at runtime.
+ 7
https://www.sololearn.com/learn/Java/2177/?ref=app