1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.walker.tcp;
|
| /**
| * 业务回调异常定义
| * @author 时克英
| *
| */
| public class ActionCallException extends Exception {
|
| /**
| *
| */
| private static final long serialVersionUID = -7246121951805786454L;
|
| public ActionCallException(String msg){
| super(msg);
| }
|
| public ActionCallException(String msg, Throwable cause){
| super(msg, cause);
| }
| }
|
|