Open Source Repository

Home /hibernate/hibernate-3.2.4.ga | Repository Home



org/hibernate/TypeMismatchException.java
//$Id: $
package org.hibernate;

/**
 * Used when a user provided type does not match the expected one
 *
 @author Emmanuel Bernard
 */
public class TypeMismatchException extends HibernateException {
  public TypeMismatchException(Throwable root) {
    superroot );
  }

  public TypeMismatchException(String s) {
    super);
  }

  public TypeMismatchException(String string, Throwable root) {
    superstring, root );
  }
}