Bug6573786ErrorHandler.java revision 968:874082a9b565
138032Speter/*
238032Speter * Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved.
3363466Sgshapiro * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
464562Sgshapiro *
538032Speter * This code is free software; you can redistribute it and/or modify it
638032Speter * under the terms of the GNU General Public License version 2 only, as
738032Speter * published by the Free Software Foundation.
838032Speter *
938032Speter * This code is distributed in the hope that it will be useful, but WITHOUT
1038032Speter * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1138032Speter * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
1238032Speter * version 2 for more details (a copy is included in the LICENSE file that
1338032Speter * accompanied this code).
14285229Sgshapiro *
1538032Speter * You should have received a copy of the GNU General Public License version
1638032Speter * 2 along with this work; if not, write to the Free Software Foundation,
1738032Speter * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18363466Sgshapiro *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 */
23
24package parsers;
25
26import org.xml.sax.SAXException;
27import org.xml.sax.SAXParseException;
28import org.xml.sax.helpers.DefaultHandler;
29
30public class Bug6573786ErrorHandler extends DefaultHandler {
31    public boolean fail = false;
32
33    public void fatalError(SAXParseException e) throws SAXException {
34        System.out.println(e.getMessage());
35        if (e.getMessage().indexOf("bad_value") < 0) {
36            fail = true;
37        }
38    } // fatalError ()
39
40    public void error(SAXParseException e) throws SAXException {
41        System.out.println(e.getMessage());
42    } // error ()
43
44    public void warning(SAXParseException e) throws SAXException {
45        System.out.println(e.getMessage());
46    } // warning ()
47}
48
49