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

org.hibernate.testing.junit4.CallbackException Maven / Gradle / Ivy

/*
 * SPDX-License-Identifier: LGPL-2.1-or-later
 * Copyright Red Hat Inc. and Hibernate Authors
 */
package org.hibernate.testing.junit4;

import java.lang.reflect.Method;

/**
 * Indicates an exception while performing a callback on the test
 *
 * @author Steve Ebersole
 */
public class CallbackException extends RuntimeException {
	public CallbackException(Method method) {
		this( Helper.extractMethodName( method ) );
	}

	public CallbackException(String message) {
		super( message );
	}

	public CallbackException(Method method, Throwable cause) {
		this( Helper.extractMethodName( method ), cause );
	}

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy