Saved Bookmarks
| 1. |
Why Is It A Bad Idea To Throw Your Own Exceptions? |
|
Answer» Well, if at that POINT you KNOW that an error has occurred, then why not write the proper code to HANDLE that error instead of passing a new Exception object to the catch block? Throwing your own EXCEPTIONS signifies some DESIGN flaws in the project. Well, if at that point you know that an error has occurred, then why not write the proper code to handle that error instead of passing a new Exception object to the catch block? Throwing your own exceptions signifies some design flaws in the project. |
|