1 /*
2 @See License.txt
3 */
4
5 package spellcast.server;
6
7 import io.*;
8
9 /***
10 * Represents an error in the Server.
11 *
12 * @author Barrie Treloar
13 */
14 public class ServerException extends RethrownException
15 {
16 public ServerException( Exception e )
17 {
18 super( e );
19 }
20
21 public ServerException( String s )
22 {
23 super( s );
24 }
25 }