All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.javaclub.jorm.common.xml.XmlParserException Maven / Gradle / Ivy

There is a newer version: 1.1.3
Show newest version
/*
 * @(#)XmlParserException.java	2011-6-27
 *
 * Copyright (c) 2011. All Rights Reserved.
 *
 */

package com.github.javaclub.jorm.common.xml;


/**
 * desc
 *
 * @author Gerald Chen
 * @version $Id: XmlParserException.java 66 2011-06-27 03:21:59Z [email protected] $
 */
public class XmlParserException extends RuntimeException {

	/** desc */
	private static final long serialVersionUID = -3127018933751782523L;

	public XmlParserException() {
		super();
	}

	public XmlParserException(String message, Throwable cause) {
		super(message, cause);
	}

	public XmlParserException(String message) {
		super(message);
	}

	public XmlParserException(Throwable cause) {
		super(cause);
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy