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

org.hibernate.cfg.NotYetImplementedException Maven / Gradle / Ivy

There is a newer version: 3.5.6-Final
Show newest version
//$Id: NotYetImplementedException.java 14736 2008-06-04 14:23:42Z hardy.ferentschik $
package org.hibernate.cfg;

import org.hibernate.MappingException;

/**
 * Mapping not yet implemented
 *
 * @author Emmanuel Bernard
 */
public class NotYetImplementedException extends MappingException {

	public NotYetImplementedException(String msg, Throwable root) {
		super( msg, root );
	}

	public NotYetImplementedException(Throwable root) {
		super( root );
	}

	public NotYetImplementedException(String s) {
		super( s );
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy