me.legrange.swap.SerialException Maven / Gradle / Ivy
package me.legrange.swap;
/**
* Thrown when there is a Serial IO error
*
* @since 1.0
* @author Gideon le Grange https://github.com/GideonLeGrange *
*/
public class SerialException extends SwapException {
SerialException(String msg) {
super(msg);
}
SerialException(String msg, Throwable cause) {
super(msg, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy