1 16 package org.apache.axis.ime.event; 17 18 import org.apache.axis.ime.MessageExchangeCorrelator; 19 20 26 public class MessageFaultEvent 27 extends MessageCorrelatedEvent { 28 29 protected Throwable exception; 30 31 public MessageFaultEvent( 32 MessageExchangeCorrelator correlator, 33 Throwable exception) { 34 super(correlator); 35 this.exception = exception; 36 } 37 38 public Throwable getException() 39 { 40 return exception; 41 } 42 } 43 | Popular Tags |