1 package org.hibernate.cfg; 3 4 import org.hibernate.MappingException; 5 6 11 public class NotYetImplementedException extends MappingException { 12 13 public NotYetImplementedException(String msg, Throwable root) { 14 super(msg, root); 15 } 16 17 public NotYetImplementedException(Throwable root) { 18 super(root); 19 } 20 21 public NotYetImplementedException(String s) { 22 super(s); 23 } 24 25 } 26 | Popular Tags |