20 lines
383 B
Java
20 lines
383 B
Java
package me.legrange.mikrotik;
|
|
|
|
/**
|
|
* Exception thrown if the Api experiences a connection problem
|
|
* @author GideonLeGrange
|
|
*/
|
|
public class ApiConnectionException extends MikrotikApiException {
|
|
|
|
public ApiConnectionException(String msg) {
|
|
super(msg);
|
|
}
|
|
|
|
public ApiConnectionException(String msg, Throwable err) {
|
|
super(msg, err);
|
|
}
|
|
|
|
|
|
|
|
}
|