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"); } }