1 22 package org.jboss.aop; 23 24 29 public class NotFoundInDispatcherException extends DispatcherConnectException 30 { 31 private static final long serialVersionUID = -5020740195889379757L; 32 33 Object oid; 34 public NotFoundInDispatcherException(Object oid) 35 { 36 super("Object with oid: " + oid + " was not found in the Dispatcher"); 37 this.oid = oid; 38 } 39 } 40 | Popular Tags |