C# : Exception Handing , Inner Exception , Exception Handling Abuse : Part 16
- The unseen error occur when program is running is called exception.
Exception Handling
- The unseen error occured when the program is running is caught using try - catch to log the error details or to process it and keep smooth functioning of the program. can be said as Exception Handling.
Exception Handling Abuse
- Using exception handling to implement programs logical flow is called Exception Handling Abuse.
Inner Exception
- This property return the exception instance and error details that caused the current exception is called as Inner Exception.
No comments