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

org.hibernate.tool.hbm2x.ExporterException Maven / Gradle / Ivy

There is a newer version: 5.6.15.Final
Show newest version
/*
 * Created on 02-Dec-2004
 *
 */
package org.hibernate.tool.hbm2x;

import java.io.ObjectStreamClass;

/**
 * Exception to use in Exporters.
 * @author max
 *
 */
public class ExporterException extends RuntimeException {

	private static final long serialVersionUID = 
			ObjectStreamClass.lookup(ExporterException.class).getSerialVersionUID();
	
	public ExporterException() {
		super();
	}
	public ExporterException(String message) {
		super(message);
	}
	public ExporterException(String message, Throwable cause) {
		super(message, cause);
	}
	public ExporterException(Throwable cause) {
		super(cause);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy