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

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

set 'eol-style' to 'native'

  • Property svn:eol-style set to native
File size: 490 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.