kr.jclab.javautils.systeminformation.exception.NativeApiErrorException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of system-information Show documentation
Show all versions of system-information Show documentation
cross-platform system information
package kr.jclab.javautils.systeminformation.exception;
public class NativeApiErrorException extends Exception {
public NativeApiErrorException() {
super();
}
public NativeApiErrorException(String message) {
super(message);
}
public NativeApiErrorException(String message, Throwable cause) {
super(message, cause);
}
public NativeApiErrorException(Throwable cause) {
super(cause);
}
public NativeApiErrorException(String message, Throwable cause, boolean enableSuppression,
boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy