Renamed LWJGLErrorException to LWJGLException

This commit is contained in:
Elias Naur 2004-03-27 15:05:24 +00:00
parent 63b33930b1
commit 9d55bbb302
14 changed files with 77 additions and 77 deletions

View file

@ -0,0 +1,7 @@
package org.lwjgl;
public class LWJGLException extends Exception {
public LWJGLException(String msg) {
super(msg);
}
}