Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What is the difference between System exceptions and Application
What is the difference between System exceptions and Application exceptions?
✍: Guest
All exception derives from Exception Base class. Exceptions can be generated programmatically
or can be generated by system. Application Exception serves as the base class for all applicationspecific
exception classes. It derives from Exception but does not provide any extended functionality.
You should derive your custom application exceptions from Application Exception.
Application exception is used when we want to define user defined exception, while system
exception is all which is defined by .NET.
2007-10-22, 5734👍, 0💬
Popular Posts:
What Is Paint Shop Pro? - PSP Tutorials - Fading Images to Background Colors with PSP Paint Shop Pro...
How To Dump the Contents of a Directory into an Array? - PHP Script Tips - Working with Directoris a...
Do You Know the Book "JUnit in Action"? You should know this book. It received some good reviews. Ti...
How do we create DCOM object in VB6? Using the CreateObject method you can create a DCOM object. You...
What will happen in these three cases? if (a=0) { //somecode } if (a==0) { //do something } if (a===...