16 lines
331 B
Java
16 lines
331 B
Java
package com.ubtrobot.jimu.exception;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class RobotActiveException extends Exception {
|
|
private int errorCode;
|
|
|
|
public RobotActiveException(int i, String str) {
|
|
super(str);
|
|
this.errorCode = i;
|
|
}
|
|
|
|
public int getErrorCode() {
|
|
return this.errorCode;
|
|
}
|
|
}
|