< prev index next >

jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/messaging/saaj/soap/SOAPIOException.java

Print this page


   1 /*
   2  * Copyright (c) 1997, 2013, 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


  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     public Throwable fillInStackTrace() {
  68         if (soapException != null) {
  69             soapException.fillInStackTrace();
  70         }
  71         return this;
  72     }
  73 

  74     public String getLocalizedMessage() {
  75         return soapException.getLocalizedMessage();
  76     }
  77 

  78     public String getMessage() {
  79         return soapException.getMessage();
  80     }
  81 

  82     public void printStackTrace() {
  83         soapException.printStackTrace();
  84     }
  85 

  86     public void printStackTrace(PrintStream s) {
  87         soapException.printStackTrace(s);
  88     }
  89 

  90     public void printStackTrace(PrintWriter s) {
  91         soapException.printStackTrace(s);
  92     }
  93 

  94     public String toString() {
  95         return soapException.toString();
  96     }
  97 
  98 }
   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


  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 }
< prev index next >