1 15 package org.apache.hivemind.lib; 16 17 import java.util.EventObject ; 18 19 24 public class RemoteExceptionEvent extends EventObject  25 { 26 private static final long serialVersionUID = 1L; 27 private Throwable _exception; 28 29 public RemoteExceptionEvent(Object source, Throwable exception) 30 { 31 super(source); 32 33 _exception = exception; 34 } 35 36 public Throwable getException() 37 { 38 return _exception; 39 } 40 41 } 42 | Popular Tags |