typemismatchexception.java

来自「好东西,hibernate-3.2.0,他是一开元的树杖hibernate-3.」· Java 代码 · 共 22 行

JAVA
22
字号
//$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) {
		super( root );
	}

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

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

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?