KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > celtix > tools > common > model > WSDLException


1 package org.objectweb.celtix.tools.common.model;
2
3 import com.sun.xml.bind.api.TypeReference;
4
5 public class WSDLException {
6
7     private final Class JavaDoc exceptionClass;
8  
9     private final TypeReference typedetail;
10     public WSDLException(Class JavaDoc exceptionClazz, TypeReference detail) {
11         this.typedetail = detail;
12         this.exceptionClass = exceptionClazz;
13     }
14
15     public Class JavaDoc getExcpetionClass() {
16         return exceptionClass;
17     }
18
19     public Class JavaDoc getDetailType() {
20         return (Class JavaDoc)typedetail.type;
21     }
22
23     public TypeReference getDetailTypeReference() {
24         return typedetail;
25     }
26     
27    
28
29 }
30
Popular Tags