< prev index next >

src/javax/xml/transform/TransformerConfigurationException.java

Print this page
rev 1253 : 8176731: JCK tests in api/javax_xml/transform/ spec conformance started failing after 8172469
Reviewed-by: joehw, dfuchs


  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 package javax.xml.transform;
  27 
  28 /**
  29  * Indicates a serious configuration error.
  30  */
  31 public class TransformerConfigurationException extends TransformerException {
  32 


  33     /**
  34      * Create a new <code>TransformerConfigurationException</code> with no
  35      * detail mesage.
  36      */
  37     public TransformerConfigurationException() {
  38         super("Configuration Error");
  39     }
  40 
  41     /**
  42      * Create a new <code>TransformerConfigurationException</code> with
  43      * the <code>String </code> specified as an error message.
  44      *
  45      * @param msg The error message for the exception.
  46      */
  47     public TransformerConfigurationException(String msg) {
  48         super(msg);
  49     }
  50 
  51     /**
  52      * Create a new <code>TransformerConfigurationException</code> with a




  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 package javax.xml.transform;
  27 
  28 /**
  29  * Indicates a serious configuration error.
  30  */
  31 public class TransformerConfigurationException extends TransformerException {
  32 
  33     private static final long serialVersionUID = 1285547467942875745L;
  34 
  35     /**
  36      * Create a new <code>TransformerConfigurationException</code> with no
  37      * detail mesage.
  38      */
  39     public TransformerConfigurationException() {
  40         super("Configuration Error");
  41     }
  42 
  43     /**
  44      * Create a new <code>TransformerConfigurationException</code> with
  45      * the <code>String </code> specified as an error message.
  46      *
  47      * @param msg The error message for the exception.
  48      */
  49     public TransformerConfigurationException(String msg) {
  50         super(msg);
  51     }
  52 
  53     /**
  54      * Create a new <code>TransformerConfigurationException</code> with a


< prev index next >