com.github.bloodshura.ignitium.ntv.NativeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ignitium-native Show documentation
Show all versions of ignitium-native Show documentation
An API for working with native system APIs, with a higher-level interface.
The newest version!
package com.github.bloodshura.ignitium.ntv;
import com.github.bloodshura.ignitium.exception.UncheckedException;
public class NativeException extends UncheckedException {
public NativeException() {
}
public NativeException(CharSequence message) {
super(message);
}
public NativeException(CharSequence message, Throwable cause) {
super(message, cause);
}
public NativeException(Throwable cause) {
super(cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy