Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
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, 4903👍, 0💬
Popular Posts:
How do I force the Dispose method to be called automatically, as clients can forget to call Dispose ...
How do we assign page specific attributes ? Page attributes are specified using the @Page directive.
How do I use forms? The basic syntax for a form is: <FORM ACTION="[URL]">...&l t;/FORM>Wh...
What is the sequence of UML diagrams in project? First let me say some fact about this question, you...
How can I search for data in a linked list? Unfortunately, the only way to search a linked list is w...