clearErrorMsg static method
清除字符串中的错误字符信息
Implementation
static String clearErrorMsg(String message) {
String msg = message.replaceAll('Exception: ', '');
msg = msg.replaceAll('[ParseExecException]', '');
msg = msg.replaceAll('[ParseInitException]', '');
msg = msg.replaceAll('[FileIOException]', '');
return msg;
}