Initial commit
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user