1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| 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);
| }
| }
|
|