package com.zy.crm.common.config; /** * Created by vincent on 2021/3/2 */ public class CodeCoolException extends RuntimeException { public CodeCoolException(Throwable e) { super(e); } public CodeCoolException(String message) { super(message); } }