Define Application Exception.
Answers
Answer:
An exception is an unwanted or unexpected event, which occurs during the execution of a program i.e at runtime, that disrupts the normal flow of the program's instructions. ... In C# an exception can be a System or an Application Level exception.
Definition of Application Exception
Explanation:
Application Level Exception:
Application-level exceptions is basically derived from the base class system of the program.
Application Exception is derived class of SystemException also.
Occurrence of Application-level exception is whenever a recoverable error is happens.
Errors that comes in the application Exception are all recoverable. The errors can be related to business logic issues in the application.
Resolving the application exception can get back to the processing.
Example :
Entering a wrong type of input
Any arithmetic exceptions