source: java/client_3D/src/com/framsticks/net/client3D/CommunicationErrorException.java @ 65

Last change on this file since 65 was 65, checked in by Maciej Komosinski, 13 years ago

added sources of the 3D client for the Framsticks server

File size: 515 bytes
Line 
1package com.framsticks.net.client3D;
2
3
4/**
5 * Thrown when protocol error occurs.
6 * @author MoMaT
7 */
8public class CommunicationErrorException extends Exception {
9        static final long serialVersionUID = 1;
10       
11        /**
12         * Communication error exception constructor.
13         */
14        public CommunicationErrorException() {
15                super();
16        }
17
18        /**
19         * Communication error exception with message passing constructor.
20         * @param string
21         */
22        public CommunicationErrorException(String string) {
23                super(string);
24        }
25}
Note: See TracBrowser for help on using the repository browser.