1 /** 2 * $RCSfile: PacketException.java,v $ 3 * $Revision: 1.2 $ 4 * $Date: 2004/10/25 23:41:56 $ 5 * 6 * Copyright (C) 2004 Jive Software. All rights reserved. 7 * 8 * This software is published under the terms of the GNU Public License (GPL), 9 * a copy of which is included in this distribution. 10 */ 11 12 package org.jivesoftware.messenger; 13 14 /** 15 * Represents a runtime packet exception typically from a malformed 16 * packet. Uncaught Packet exceptions will cause the originating session 17 * to close. 18 * 19 * @author Iain Shigeoka 20 */ 21 public class PacketException extends RuntimeException { 22 23 public PacketException() { 24 } 25 26 public PacketException(String s) { 27 super(s); 28 } 29 30 } 31