KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > jfun > yan > xml > ContinuationEscapeException


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