001    /*
002     * To change this template, choose Tools | Templates
003     * and open the template in the editor.
004     */
005    
006    package org.util.xml.parse;
007    
008    /**
009     *
010     * @author masaru
011     */
012    public class XMLParseException extends Exception {
013    
014        public XMLParseException(String message) {
015            super(message);
016        }
017    }