Class AWTError in Java
An AWTError is thrown from an application when a serious Abstract Toolkit Error has occurred during execution. It is a runtime exception.
The class structure of the AWTError is given as:
public class java.awt.AWTError extends java.lang.Error{ //constructor public AWTError(String message); //constructs an AWTError with the specified detailed message. }