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 exceptionClass; 8 9 private final TypeReference typedetail; 10 public WSDLException(Class exceptionClazz, TypeReference detail) { 11 this.typedetail = detail; 12 this.exceptionClass = exceptionClazz; 13 } 14 15 public Class getExcpetionClass() { 16 return exceptionClass; 17 } 18 19 public Class getDetailType() { 20 return (Class )typedetail.type; 21 } 22 23 public TypeReference getDetailTypeReference() { 24 return typedetail; 25 } 26 27 28 29 } 30 | Popular Tags |