#
luxiaotao1123
2020-07-04 1ce14188009c6a85787650eca493d154ab169810
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.zy.asrs.task;
 
import com.core.exception.CoolException;
 
/**
 * Created by vincent on 2020/7/4
 */
public abstract class AbstractHandler {
 
    protected void exceptionHandle(String errorMsg){
        throw new CoolException("231");
    }
 
}