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

me.legrange.mikrotik.impl.ScanException Maven / Gradle / Ivy

There is a newer version: 3.0.8
Show newest version
package me.legrange.mikrotik.impl;

/**
 * Exception thrown if the scanner encounters an error while scanning a command line.
 * @author GideonLeGrange
 */
public class ScanException extends ParseException {

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

    ScanException(String msg, Throwable err) {
        super(msg, err);
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy