Computer Science, asked by vcingawale5744, 11 months ago

Additional information sent when an exception is thrown may be placed in......

Answers

Answered by NeilStringer52
0
Exceptions are unusual things that can happen in your Java programs outside the normal or desired behavior of that program. Exceptions include errors that could be fatal to your program but also include other unusual situations. By managing exceptions, you can manage errors and possibly work around them.An exception was thrown" is the proper Java terminology for "an error happened." Exceptions don't occur, they are thrown. Java throws anexception in response to an unusual situation. You can also throw your ownexceptions, or catch an exception to gracefully manage errors
Similar questions