18 lines
339 B
Java
18 lines
339 B
Java
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);
|
|
}
|
|
}
|