re-delete NotYetImplementedFor6Exception to fix main

This commit is contained in:
Gavin 2022-12-22 20:11:43 +01:00
parent afcb933d28
commit 865a435b3b
1 changed files with 0 additions and 32 deletions

View File

@ -1,32 +0,0 @@
/*
* 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 http://www.gnu.org/licenses/lgpl-2.1.html.
*/
package org.hibernate;
import org.hibernate.metamodel.mapping.NonTransientException;
/**
* Thrown from methods added for 6.0 that are not yet implemented.
*
* @deprecated As of 6.2 all uses of this exception have been removed; and it
* is completely used in the Hibernate code
*/
@Internal
@Deprecated(since = "6.2", forRemoval = true)
public class NotYetImplementedFor6Exception extends RuntimeException implements NonTransientException,
NotImplementedYetException {
public NotYetImplementedFor6Exception(String message) {
super( message );
}
public NotYetImplementedFor6Exception(Class clazz) {
super( clazz.getName() );
}
public NotYetImplementedFor6Exception() {
super( "Not yet implemented" );
}
}