Ginger3D/src/main/java/com/github/hydos/ginger/engine/vulkan/io/VulkanException.java

16 lines
312 B
Java

package com.github.hydos.ginger.engine.vulkan.io;
public class VulkanException extends RuntimeException
{
public VulkanException(String string)
{
super(string);
}
/**
* the exception type thrown when a vulkan error is thrown
*/
private static final long serialVersionUID = -6985060773180054456L;
}