1 /*- SD_Error.java -------------------------------------------------+ 2 | | 3 | Copyright (C) 2002-2003 Joseph Monti, LlamaChat | 4 | countjoe@users.sourceforge.net | 5 | http://www.42llamas.com/LlamaChat/ | 6 | | 7 | This program is free software; you can redistribute it and/or | 8 | modify it under the terms of the GNU General Public License | 9 | as published by the Free Software Foundation; either version 2 | 10 | of the License, or (at your option) any later version | 11 | | 12 | This program is distributed in the hope that it will be useful, | 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 15 | GNU General Public License for more details. | 16 | | 17 | A copy of the GNU General Public License may be found in the | 18 | installation directory named "GNUGPL.txt" | 19 | | 20 +-----------------------------------------------------------------+ 21 */ 22 23 package common.sd; 24 25 import java.io.Serializable; 26 import common.SocketConnection; 27 28 /* -------------------- JavaDoc Information ----------------------*/ 29 /** 30 * Replace information on this file with your file's information. 31 * @author Joseph Monti <a HREF="mailto:countjoe@users.sourceforge.net">countjoe@users.sourceforge.net</a> 32 * @version 0.8 33 */ 34 public class SD_Error implements SocketData, Serializable { 35 private String message; 36 37 public SD_Error(String m) { 38 message = m; 39 } 40 41 public void performAction(SocketConnection sc) { 42 sc.error(message); 43 } 44 } 45