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:
Explain the user defined Exceptions?
Explain the user defined Exceptions?
✍: Guest
User defined Exceptions are the separate Exception classes defined by the user for specific purposed. An user defined can created by simply sub-classing it to the Exception class. This allows custom exceptions to be generated (using throw) and caught in the same way as normal exceptions.
Example:
class myCustomException extends Exception {
// The class simply has to exist to be an exception
}
2013-02-22, 2346👍, 0💬
Popular Posts:
What is the method to customize columns in DataGrid? Use the template column.
How do we access attributes using “XmlReader”? Below snippets shows the way to access attributes. Fi...
How can I check for HTML errors? HTML validators check HTML documents against a formal definition of...
Can one change the mouse pointer in Forms? The SET_APPLICATION_PROPERTY build-in in Oracle Forms all...
What is Concern in AOP? gA concern is a particular goal, concept, or area of interesth There are m...