package com.iplatform.core; import com.walker.infrastructure.ApplicationException; /** * 平台定义检查异常,后续业务类异常都要继承该对象。 * @author 时克英 * @date 2023-03-28 */ public class PlatformException extends ApplicationException { public PlatformException(String msg, Throwable caution){ super(msg, caution); } }