All Downloads are FREE. Search and download functionalities are using the official Maven repository.

me.legrange.panstamp.ModemException Maven / Gradle / Ivy

There is a newer version: 2.2
Show newest version
package me.legrange.panstamp;

import me.legrange.panstamp.NetworkException;

/**
 * Thrown when there is a problem with modem communication.
 * 
 * @since 1.0
 * @author Gideon le Grange https://github.com/GideonLeGrange *
 */
public final class ModemException extends NetworkException {

    ModemException(String msg) {
        super(msg);
    }

    ModemException(String msg, Throwable cause) {
        super(msg, cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy