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

me.legrange.mikrotik.MikrotikApiException Maven / Gradle / Ivy

package me.legrange.mikrotik;

/**
 * Thrown by the Mikrotik API to indicate errors
 *
 * @author GideonLeGrange
 */
public class MikrotikApiException extends Exception {

    public MikrotikApiException(String msg) {
        super(msg);
    }

    public MikrotikApiException(String msg, Throwable err) {
        super(msg, err);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy