com.sun.xml.messaging.saaj.soap.SOAPIOException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of saaj-impl Show documentation
Show all versions of saaj-impl Show documentation
Open source Reference Implementation of JSR-67: SOAP with Attachments API for Java (SAAJ MR: 1.4)
/*
* Copyright (c) 1997, 2020 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
/**
* Created on Nov 19, 2002
*
* To change this generated comment edit the template variable "filecomment":
* Window>Preferences>Java>Templates.
* To enable and disable the creation of file comments go to
* Window>Preferences>Java>Code Generation.
*/
package com.sun.xml.messaging.saaj.soap;
import java.io.*;
import com.sun.xml.messaging.saaj.SOAPExceptionImpl;
public class SOAPIOException extends IOException {
SOAPExceptionImpl soapException;
public SOAPIOException() {
super();
soapException = new SOAPExceptionImpl();
soapException.fillInStackTrace();
}
public SOAPIOException(String s) {
super();
soapException = new SOAPExceptionImpl(s);
soapException.fillInStackTrace();
}
public SOAPIOException(String reason, Throwable cause) {
super();
soapException = new SOAPExceptionImpl(reason, cause);
soapException.fillInStackTrace();
}
public SOAPIOException(Throwable cause) {
super(cause.toString());
soapException = new SOAPExceptionImpl(cause);
soapException.fillInStackTrace();
}
@Override
public Throwable fillInStackTrace() {
if (soapException != null) {
soapException.fillInStackTrace();
}
return this;
}
@Override
public String getLocalizedMessage() {
return soapException.getLocalizedMessage();
}
@Override
public String getMessage() {
return soapException.getMessage();
}
@Override
public void printStackTrace() {
soapException.printStackTrace();
}
@Override
public void printStackTrace(PrintStream s) {
soapException.printStackTrace(s);
}
@Override
public void printStackTrace(PrintWriter s) {
soapException.printStackTrace(s);
}
@Override
public String toString() {
return soapException.toString();
}
}