textbender.g.lang
Class CatcherP<S>
java.lang.Object
  
CatcherP<S>
- All Implemented Interfaces: 
 - Catcher<S>
 
public class CatcherP<S>
- extends Object
- implements Catcher<S>
  
A catcher that prints exceptions to the standard error stream,
 but rethrows errors. Never tested.
 
 
 
 
| Methods inherited from class java.lang.Object | 
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
 
CatcherP
public CatcherP()
catchError
@ThreadSafe
public void catchError(S source,
                                  Error r)
- Immediately re-throws the error.
 Subclasses that override this method would normally also re-throw it
 (or call super.catchError) taking care not to drop it first.
- Specified by:
 catchError in interface Catcher<S>
 
- Parameters:
 source - logical source of the error
 
 
catchException
@ThreadSafe
public void catchException(S source,
                                      Exception x)
- Calls Catcher.X.printStackTrace( source, x, System.err ).
- Specified by:
 catchException in interface Catcher<S>
 
- Parameters:
 source - logical source of the exception