what type of exception can be ignored at compile time
Answers
Answered by
2
Answer:
run time Exception
Answered by
0
Runtime Exceptions can be ignored at compile time.
- Unchecked exceptions take place at the time of execution. Such exceptions are known as Runtime Exceptions. During compilation, these exceptions are avoided but are checked during runtime.
- No compile error occurs when an unchecked exception is thrown by the program and that exception is not declared.
- When the users provide bad data then such exceptions take place during user-program interaction.
Similar questions