1 17 package org.apache.servicemix.components.jabber; 18 19 import org.jivesoftware.smack.packet.Packet; 20 21 26 public class JabberListenerException extends RuntimeException { 27 private Packet packet; 28 29 public JabberListenerException(Exception cause, Packet packet) { 30 super(cause.getMessage() + ". Was processing packet: " + packet, cause); 31 this.packet = packet; 32 } 33 34 public Packet getPacket() { 35 return packet; 36 } 37 } 38 | Popular Tags |