Save This Page
Home » openjdk-7 » javax » xml » ws » [javadoc | source]
    1   /*
    2    * Copyright 2005 Sun Microsystems, Inc.  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.  Sun designates this
    8    * particular file as subject to the "Classpath" exception as provided
    9    * by Sun 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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
   22    * CA 95054 USA or visit www.sun.com if you need additional information or
   23    * have any questions.
   24    */
   25   
   26   package javax.xml.ws;
   27   
   28   /** The <code>ProtocolException</code> class is a
   29    *  base class for exceptions related to a specific protocol binding. Subclasses
   30    *  are used to communicate protocol level fault information to clients and may
   31    *  be used on the server to control the protocol specific fault representation.
   32    *
   33    *  @since JAX-WS 2.0
   34   **/
   35   public class ProtocolException extends WebServiceException {
   36       /**
   37        * Constructs a new protocol exception with null as its detail message. The
   38        * cause is not initialized, and may subsequently be initialized by a call
   39        * to Throwable.initCause(java.lang.Throwable).
   40        */
   41       public ProtocolException() {
   42           super();
   43       }
   44   
   45       /**
   46        * Constructs a new protocol exception with the specified detail message.
   47        * The cause is not initialized, and may subsequently be initialized by a
   48        * call to Throwable.initCause(java.lang.Throwable).
   49        *
   50        * @param message the detail message. The detail message is saved for later
   51        *   retrieval by the Throwable.getMessage() method.
   52        */
   53       public ProtocolException(String message) {
   54           super(message);
   55       }
   56   
   57       /**
   58        * Constructs a new runtime exception with the specified detail message and
   59        * cause.
   60        *
   61        * Note that the detail message associated with  cause is not automatically
   62        * incorporated in  this runtime exception's detail message.
   63        *
   64        * @param message the detail message (which is saved for later retrieval  by
   65        *   the Throwable.getMessage() method).
   66        * @param cause the cause (which is saved for later retrieval by the
   67        * Throwable.getCause() method). (A null value is  permitted, and indicates
   68        * that the cause is nonexistent or  unknown.)
   69        */
   70       public ProtocolException(String message,  Throwable cause) {
   71           super(message, cause);
   72       }
   73   
   74       /**
   75        * Constructs a new runtime exception with the specified cause and a  detail
   76        * message of (cause==null ? null : cause.toString())  (which typically
   77        * contains the class and detail message of  cause). This constructor is
   78        * useful for runtime exceptions  that are little more than wrappers for
   79        * other throwables.
   80        *
   81        * @param cause the cause (which is saved for later retrieval by the
   82        * Throwable.getCause() method). (A null value is  permitted, and indicates
   83        * that the cause is nonexistent or  unknown.)
   84        */
   85       public ProtocolException(Throwable cause) {
   86           super(cause);
   87       }
   88   }

Save This Page
Home » openjdk-7 » javax » xml » ws » [javadoc | source]