org.lwjgl.system.windows.WindowsUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.lwjgl.lwjgl Show documentation
Show all versions of org.lwjgl.lwjgl Show documentation
LWJGL OSGi bundle (Core LWJGL bundle)
The newest version!
/*
* Copyright LWJGL. All rights reserved.
* License terms: https://www.lwjgl.org/license
*/
package org.lwjgl.system.windows;
import static org.lwjgl.system.windows.WinBase.*;
public final class WindowsUtil {
private WindowsUtil() {
}
public static void windowsThrowException(String msg) {
throw new RuntimeException(msg + " (error code = " + getLastError() + ")");
}
}