com.crashinvaders.basisu.wrapper.BasisuWrapperException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of basisu-wrapper Show documentation
Show all versions of basisu-wrapper Show documentation
Java wrapper for Basis Universal texture transcoder native code.
The newest version!
package com.crashinvaders.basisu.wrapper;
/**
* An exception related to gdx-basisu-wrapper code both for native and Java side.
*/
public class BasisuWrapperException extends RuntimeException {
private static final long serialVersionUID = -6258402319222323567L;
public BasisuWrapperException(String message) {
super(message);
}
}