FileDocCategorySizeDatePackage
HeadlessException.javaAPI DocAndroid 1.5 API1712Wed May 06 22:41:54 BST 2009java.awt

HeadlessException

public class HeadlessException extends UnsupportedOperationException
The HeadlessException class provides notifications and error messages when code that is dependent on a keyboard, display, or mouse is called in an environment that does not support a keyboard, display, or mouse.
since
Android 1.0

Fields Summary
private static final long
serialVersionUID
The Constant serialVersionUID.
Constructors Summary
public HeadlessException()
Instantiates a new headless exception.


              
      
        super();
    
public HeadlessException(String msg)
Instantiates a new headless exception with the specified message.

param
msg the String which represents error message.

        super(msg);
    
Methods Summary