| 1234567891011121314151617181920 |
- package com.seecoder.dataanalysis.logic.parser;
- /**
- * @author miaomuzhi
- * @since 2022/2/15
- */
- public class ParsingException extends Exception{
- /**
- * 解析错误码
- * 0: 元日志格式错误
- * 1:日志格式错误
- * 2:不支持的日志操作码
- */
- private int errorCode;
- public ParsingException(String message, int errorCode) {
- super(message);
- this.errorCode = errorCode;
- }
- }
|