All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.objectweb.celtix.tools.common.model.WSDLException Maven / Gradle / Ivy

The newest version!
package org.objectweb.celtix.tools.common.model;

import com.sun.xml.bind.api.TypeReference;

public class WSDLException {

    private final Class exceptionClass;
 
    private final TypeReference typedetail;
    public WSDLException(Class exceptionClazz, TypeReference detail) {
        this.typedetail = detail;
        this.exceptionClass = exceptionClazz;    
    }

    public Class getExcpetionClass() {
        return exceptionClass;
    }

    public Class getDetailType() {
        return (Class)typedetail.type;
    }

    public TypeReference getDetailTypeReference() {
        return typedetail;
    }
    
   

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy