package at.gv.util.wsdl.szr;

import javax.xml.ws.WebFault;


/**
 * This class was generated by Apache CXF 3.0.1
 * 2014-10-28T17:23:34.012+01:00
 * Generated source version: 3.0.1
 */

@WebFault(name = "SZRException", targetNamespace = "urn:SZRServices")
public class SZRException extends Exception {
    
    private at.gv.util.xsd.szr.SZRException szrException;

    public SZRException() {
        super();
    }
    
    public SZRException(String message) {
        super(message);
    }
    
    public SZRException(String message, Throwable cause) {
        super(message, cause);
    }

    public SZRException(String message, at.gv.util.xsd.szr.SZRException szrException) {
        super(message);
        this.szrException = szrException;
    }

    public SZRException(String message, at.gv.util.xsd.szr.SZRException szrException, Throwable cause) {
        super(message, cause);
        this.szrException = szrException;
    }

    public at.gv.util.xsd.szr.SZRException getFaultInfo() {
        return this.szrException;
    }
}