src/java.xml/share/classes/com/sun/org/apache/xerces/internal/jaxp/validation/WrappedSAXException.java
changeset 47443 711ef438b6ad
parent 47216 71c04702a3d5
child 48409 5ab69533994b
equal deleted inserted replaced
47442:560ee83bfce5 47443:711ef438b6ad
     1 /*
     1 /*
     2  * reserved comment block
     2  * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT REMOVE OR ALTER!
     3  * @LastModified: Oct 2017
     4  */
     4  */
     5 /*
     5 /*
     6  * Licensed to the Apache Software Foundation (ASF) under one or more
     6  * Licensed to the Apache Software Foundation (ASF) under one or more
     7  * contributor license agreements.  See the NOTICE file distributed with
     7  * contributor license agreements.  See the NOTICE file distributed with
     8  * this work for additional information regarding copyright ownership.
     8  * this work for additional information regarding copyright ownership.
    38  *
    38  *
    39  * @author
    39  * @author
    40  *     Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com)
    40  *     Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com)
    41  */
    41  */
    42 public class WrappedSAXException extends RuntimeException {
    42 public class WrappedSAXException extends RuntimeException {
       
    43     private static final long serialVersionUID = -3201986204982729962L;
       
    44 
    43     public final SAXException exception;
    45     public final SAXException exception;
    44 
    46 
    45     WrappedSAXException( SAXException e ) {
    47     WrappedSAXException( SAXException e ) {
    46         this.exception = e;
    48         this.exception = e;
    47     }
    49     }