Fixed AWT dependency.

This commit is contained in:
Caspian Rychlik-Prince 2005-01-20 22:51:28 +00:00
parent debea3b6b7
commit a8fcd3edde
11 changed files with 187 additions and 79 deletions

View file

@ -34,19 +34,44 @@ package org.lwjgl;
/**
* $Id$
* <p>
* This exception is supplied to make exception handling more generic
* for LWJGL specific exceptions
* This exception is supplied to make exception handling more generic for LWJGL
* specific exceptions
* </p>
*
* @author Brian Matzon <brian@matzon.dk>
* @version $Revision$
*/
public class LWJGLException extends Exception {
/**
* Creates a new LWJGLException
* @param msg String identifier for exception
*/
/**
* Plain c'tor
*/
public LWJGLException() {
super();
}
/**
* Creates a new LWJGLException
*
* @param msg
* String identifier for exception
*/
public LWJGLException(String msg) {
super(msg);
}
/**
* @param message
* @param cause
*/
public LWJGLException(String message, Throwable cause) {
super(message, cause);
}
/**
* @param cause
*/
public LWJGLException(Throwable cause) {
super(cause);
}
}