Start of Tutorial > Start of Trail > Start of Lesson |
Search
Feedback Form |
When faced with choosing the type of exception to throw, you can either use one written by someone else—the Java platform provides a lot of exception classes that you can use—or you can write one of your own. You should write your own exception classes if you answer yes to any of the following questions. Otherwise, you can probably use someone else’s.Suppose you are writing a linked list class that you're planning to distribute as freeware. Your linked list class supports the following methods, among others:
- Do you need an exception type that isn’t represented by those in the Java platform?
- Would it help your users if they could differentiate your exceptions from those thrown by classes written by other vendors?
- Does your code throw more than one related exception?
- If you use someone else’s exceptions, will your users have access to those exceptions? A similar question is, should your package be independent and self-contained?
The linked list class can throw multiple exceptions, and it would be convenient to be able to catch all exceptions thrown by the linked list with one exception handler. Also, if you plan to distribute your linked list in a package, all related code should be packaged together. Thus, the linked list should provide its own set of exception classes.
objectAt(int n)
- Returns the object in the
n
th position in the list. Throws an exception if the argument is less than 0 or larger than the number of objects currently in the list.firstObject()
- Returns the first object in the list. Throws an exception if the list contains no objects.
indexOf(Object o)
- Searches the list for the specified
Object
and returns its position in the list. Throws an exception if the object passed into the method is not in the list.The next figure illustrates one possible class hierarchy for the exceptions thrown by the linked list.
AnyException
subclass can be used as the parent class ofLinkedListException
. However, a quick perusal of those subclasses shows that they are inappropriate because they are either too specialized or completely unrelated toLinkedListException
. Therefore, the parent class ofLinkedListException
should beException
.Most applets and applications that you write will throw objects that are
Exception
s.Error
s are normally used for serious, hard errors in the system, such as those that prevent the Java Virtual Machine from running.
Note: For readable code, it’s good practice to append the stringException
to the names of all classes that inherit (directly or indirectly) from theException
class.
Start of Tutorial > Start of Trail > Start of Lesson |
Search
Feedback Form |
Copyright 1995-2005 Sun Microsystems, Inc. All rights reserved.