jaxws/src/java.xml.soap/share/classes/com/sun/xml/internal/messaging/saaj/soap/SOAPIOException.java
changeset 28641 6b05689b7445
parent 28640 01e4ca94fb0d
parent 28505 7574ac3bb6c1
child 28642 a42fefc69922
equal deleted inserted replaced
28640:01e4ca94fb0d 28641:6b05689b7445
     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
       
    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     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 }