
org.hibernate.cfg.NotYetImplementedException Maven / Gradle / Ivy
//$Id: NotYetImplementedException.java 11282 2007-03-14 22:05:59Z epbernard $
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 - 2025 Weber Informatics LLC | Privacy Policy