1 31 package org.objectweb.proactive.core.group; 32 33 38 public class ExceptionInGroup extends RuntimeException { 39 40 41 private Object object; 42 43 private Throwable throwable; 44 45 50 public ExceptionInGroup (Object object, Throwable throwable) { 51 this.object = object; 52 this.throwable = throwable; 53 } 54 55 56 60 public Object getObject() { 61 return this.object; 62 } 63 64 68 public Throwable getThrowable() { 69 return this.throwable; 70 } 71 72 } 73 | Popular Tags |