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