From 865a435b3bcd174e74eefddd5e476d404fb5d42c Mon Sep 17 00:00:00 2001 From: Gavin Date: Thu, 22 Dec 2022 20:11:43 +0100 Subject: [PATCH] re-delete NotYetImplementedFor6Exception to fix main --- .../NotYetImplementedFor6Exception.java | 32 ------------------- 1 file changed, 32 deletions(-) delete mode 100644 hibernate-core/src/main/java/org/hibernate/NotYetImplementedFor6Exception.java diff --git a/hibernate-core/src/main/java/org/hibernate/NotYetImplementedFor6Exception.java b/hibernate-core/src/main/java/org/hibernate/NotYetImplementedFor6Exception.java deleted file mode 100644 index 4c82a466c3..0000000000 --- a/hibernate-core/src/main/java/org/hibernate/NotYetImplementedFor6Exception.java +++ /dev/null @@ -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" ); - } -}