From b6d67611ca0c516f8fae6b4e1c49339532873116 Mon Sep 17 00:00:00 2001 From: asdfasdf Date: Wed, 13 Nov 2019 12:44:55 -0800 Subject: [PATCH] Added exception --- src/main/network/exceptions/ParaMismatchException.java | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/main/network/exceptions/ParaMismatchException.java diff --git a/src/main/network/exceptions/ParaMismatchException.java b/src/main/network/exceptions/ParaMismatchException.java new file mode 100644 index 0000000..7b1cc08 --- /dev/null +++ b/src/main/network/exceptions/ParaMismatchException.java @@ -0,0 +1,7 @@ +package network; + +public class ParaMismatchException extends Exception { + public ParaMismatchException(String sss) { + super(sss); + } +}