1 package jfun.yan.xml; 2 3 import jfun.yan.InternalException; 4 5 class ContinuationEscapeException extends InternalException { 6 private Object result; 7 private Object id; 8 ContinuationEscapeException(String arg0, Object result, Object id) { 9 super(arg0); 10 this.id = id; 11 this.result = result; 12 } 13 ContinuationEscapeException(String arg0){ 14 super(arg0); 15 } 16 17 void setId(Object id) { 18 this.id = id; 19 } 20 void setResult(Object result) { 21 this.result = result; 22 } 23 Object getResult(){ 24 return result; 25 } 26 Object getId(){ 27 return id; 28 } 29 } 30 | Popular Tags |