src/javax/xml/parsers/FactoryConfigurationError.java

Print this page
rev 602 : 8047723: @since tag cleanup in jaxp
Reviewed-by:


  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.parsers;
  27 
  28 /**
  29  * Thrown when a problem with configuration with the Parser Factories
  30  * exists. This error will typically be thrown when the class of a
  31  * parser factory specified in the system properties cannot be found
  32  * or instantiated.
  33  *
  34  * @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
  35  * @version $Revision: 1.7 $, $Date: 2010-11-01 04:36:09 $

  36  */
  37 
  38 public class FactoryConfigurationError extends Error {
  39     private static final long serialVersionUID = -827108682472263355L;
  40 
  41     /**
  42      *<code>Exception</code> that represents the error.
  43      */
  44     private Exception exception;
  45 
  46     /**
  47      * Create a new <code>FactoryConfigurationError</code> with no
  48      * detail message.
  49      */
  50 
  51     public FactoryConfigurationError() {
  52         super();
  53         this.exception = null;
  54     }
  55 




  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.parsers;
  27 
  28 /**
  29  * Thrown when a problem with configuration with the Parser Factories
  30  * exists. This error will typically be thrown when the class of a
  31  * parser factory specified in the system properties cannot be found
  32  * or instantiated.
  33  *
  34  * @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
  35  * @version $Revision: 1.7 $, $Date: 2010-11-01 04:36:09 $
  36  * @since 1.4
  37  */
  38 
  39 public class FactoryConfigurationError extends Error {
  40     private static final long serialVersionUID = -827108682472263355L;
  41 
  42     /**
  43      *<code>Exception</code> that represents the error.
  44      */
  45     private Exception exception;
  46 
  47     /**
  48      * Create a new <code>FactoryConfigurationError</code> with no
  49      * detail message.
  50      */
  51 
  52     public FactoryConfigurationError() {
  53         super();
  54         this.exception = null;
  55     }
  56