gamingtools
Interface ExceptionHandler


public interface ExceptionHandler

A class implements this interface to receive notification that an exception has occurred. This is typically used for communication of an error from one thread to another.

See Also:
GraphicsSource

Method Summary
 void exceptionOccurred(Throwable t)
          Called back an Exception or an Error happens.
 

Method Detail

exceptionOccurred

public void exceptionOccurred(Throwable t)
Called back an Exception or an Error happens.

Parameters:
t - The Exception or Error.