From 25c258db1a2e89ef5fe0cf4bbd4f3f1d40c32723 Mon Sep 17 00:00:00 2001 From: Gavin Date: Thu, 22 Dec 2022 20:18:06 +0100 Subject: [PATCH] minor Javadoc fix --- .../src/main/java/org/hibernate/HibernateException.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hibernate-core/src/main/java/org/hibernate/HibernateException.java b/hibernate-core/src/main/java/org/hibernate/HibernateException.java index a742bfdbec..9fa9339600 100644 --- a/hibernate-core/src/main/java/org/hibernate/HibernateException.java +++ b/hibernate-core/src/main/java/org/hibernate/HibernateException.java @@ -9,10 +9,10 @@ package org.hibernate; import jakarta.persistence.PersistenceException; /** - * The base exception type for Hibernate exceptions. + * The base type for exceptions thrown by Hibernate. *

- * Note that all {@link java.sql.SQLException SQLExceptions} will be wrapped in some form of - * {@link JDBCException}. + * Note that every {@linkplain java.sql.SQLException exception arising + * from the JDBC layer} is wrapped in some form of {@link JDBCException}. * * @author Gavin King */