★ wanayoo — archive 1999 http://wdvl.internet.com/Authoring/Scripting/Tutorial/java_throwing_errors.htmlNouvelle recherche | Portail wanayoo

Get in on the Ground Floor of Internet Publishing logo

internet.com
Join the free
WDVL newsletter!

home

Throwing Errors

Throwing Errors

  • In Java terms, errors are thrown to an event handler which catches it and processes it.

  • Thus, exception objects are always instances of the Throwable class and can be thrown from a routine to an error handler. In the following example, we see that the readLine() method might throw an IOException error object if it has trouble reading a line.

    public String readLine() throws IOException

  • It is also of interest to know that a method may throw multiple errors by listing them as a comma separated list after the "throws" keyword.

  • Of course, a method may perform correctly without throwing an error. The throws portion just allows the method to deal with the "other" cases.

  • You can also throw your own error objects including both those available through the JDK as well as ones you create yourself.

Additional Resources:

Error Handling
Table of Contents
Catching Errors

Up to => Home / Authoring / Scripting / Tutorial

Instantly look up a "techie" word using Webopedia!!


internet.com
e-commerce
WebDeveloper Network


Let internet.com work for you!

Copyright 1999 internet.com Corporation. Legal Notices. Privacy Policy.

www.internet.com