KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > openedit > error > ErrorHandler


1 package com.openedit.error;
2
3 import com.openedit.WebPageRequest;
4
5
6 /**
7  *
8  * @author Matt Avery, mavery@einnovation.com
9  */

10 public interface ErrorHandler
11 {
12
13     /**
14      * Handle the error.
15      * Return if consumed
16      * @param error The error
17      */

18     public boolean handleError(Exception JavaDoc inException, WebPageRequest inPageStreamer );
19
20 }
21
Popular Tags