19 lines
397 B
Java
19 lines
397 B
Java
package com.ubt.jimu.blockly.exception;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class JimuRobotMessage {
|
|
public static final int ERROR = 2;
|
|
public static final int SUCCESS = 1;
|
|
public static final int WAITING = 0;
|
|
private int level;
|
|
private String msg;
|
|
|
|
public int getLevel() {
|
|
return this.level;
|
|
}
|
|
|
|
public String getMsg() {
|
|
return this.msg;
|
|
}
|
|
}
|