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

org.hibernate.internal.util.beans.BeanIntrospectionException Maven / Gradle / Ivy

The newest version!
/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or .
 */
package org.hibernate.internal.util.beans;

import org.hibernate.HibernateException;

/**
 * Indicates a problem dealing with {@link java.beans.BeanInfo} via the {@link BeanInfoHelper} delegate.
 *
 * @author Steve Ebersole
 */
public class BeanIntrospectionException extends HibernateException {
	public BeanIntrospectionException(String string, Throwable root) {
		super( string, root );
	}

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy