All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.lwjgl.system.windows.WindowsUtil Maven / Gradle / Ivy

/*
 * 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() + ")");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy