1 /*
   2  * Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 /**
  27  * Created on Nov 19, 2002
  28  *
  29  * To change this generated comment edit the template variable "filecomment":
  30  * Window>Preferences>Java>Templates.
  31  * To enable and disable the creation of file comments go to
  32  * Window>Preferences>Java>Code Generation.
  33  */
  34 package com.sun.xml.internal.messaging.saaj.soap;
  35 
  36 import java.io.*;
  37 
  38 import com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl;
  39 
  40 public class SOAPIOException extends IOException {
  41     SOAPExceptionImpl soapException;
  42 
  43     public SOAPIOException() {
  44         super();
  45         soapException = new SOAPExceptionImpl();
  46         soapException.fillInStackTrace();
  47     }
  48 
  49     public SOAPIOException(String s) {
  50         super();
  51         soapException = new SOAPExceptionImpl(s);
  52         soapException.fillInStackTrace();
  53     }
  54 
  55     public SOAPIOException(String reason, Throwable cause) {
  56         super();
  57         soapException = new SOAPExceptionImpl(reason, cause);
  58         soapException.fillInStackTrace();
  59     }
  60 
  61     public SOAPIOException(Throwable cause) {
  62         super(cause.toString());
  63         soapException = new SOAPExceptionImpl(cause);
  64         soapException.fillInStackTrace();
  65     }
  66 
  67     @Override
  68     public Throwable fillInStackTrace() {
  69         if (soapException != null) {
  70             soapException.fillInStackTrace();
  71         }
  72         return this;
  73     }
  74 
  75     @Override
  76     public String getLocalizedMessage() {
  77         return soapException.getLocalizedMessage();
  78     }
  79 
  80     @Override
  81     public String getMessage() {
  82         return soapException.getMessage();
  83     }
  84 
  85     @Override
  86     public void printStackTrace() {
  87         soapException.printStackTrace();
  88     }
  89 
  90     @Override
  91     public void printStackTrace(PrintStream s) {
  92         soapException.printStackTrace(s);
  93     }
  94 
  95     @Override
  96     public void printStackTrace(PrintWriter s) {
  97         soapException.printStackTrace(s);
  98     }
  99 
 100     @Override
 101     public String toString() {
 102         return soapException.toString();
 103     }
 104 
 105 }