20 lines
610 B
Java
20 lines
610 B
Java
package com.ubtrobot.jimu.robotapi;
|
|
|
|
import com.ubtrobot.jimu.connection.RequestException;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class JimuException extends RequestException {
|
|
public static final int ERR_CODE_ARGUMENT_INVALID = -20;
|
|
public static final int ERR_CODE_RESULT_FAIL = -21;
|
|
public static final int ERR_CODE_RES_INVALID = -22;
|
|
public static final String ERR_MSG_ARGUMENT_INVALID = "Argument is illegal!";
|
|
|
|
public JimuException(int i, String str) {
|
|
this(i, str, null);
|
|
}
|
|
|
|
public JimuException(int i, String str, Throwable th) {
|
|
super(i, str, th);
|
|
}
|
|
}
|