1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.walker.tcp;
|
| public class ProtocolException extends Exception {
|
| /**
| *
| */
| private static final long serialVersionUID = 6106887399883706616L;
| public ProtocolException(String name){
| super(name);
| }
| public ProtocolException(String name, Throwable cause){
| super(name,cause);
| }
|
| }
|
|