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

org.hibernate.annotations.common.reflection.ClassLoadingException Maven / Gradle / Ivy

/*
 * 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.annotations.common.reflection;

/**
 * @author Steve Ebersole
 */
public class ClassLoadingException extends RuntimeException {
	public ClassLoadingException(String message) {
		super( message );
	}

	public ClassLoadingException(String message, Throwable cause) {
		super( message, cause );
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy