mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-01-02 23:09:57 +01:00
8 lines
124 B
Java
8 lines
124 B
Java
|
|
package org.lwjgl;
|
||
|
|
|
||
|
|
public class LWJGLException extends Exception {
|
||
|
|
public LWJGLException(String msg) {
|
||
|
|
super(msg);
|
||
|
|
}
|
||
|
|
}
|