We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 336f83b commit ce98e3eCopy full SHA for ce98e3e
hibernate-core/src/main/java/org/hibernate/query/sqm/ParsingException.java
@@ -6,7 +6,7 @@
6
*/
7
package org.hibernate.query.sqm;
8
9
-import org.hibernate.HibernateException;
+import org.hibernate.QueryException;
10
11
/**
12
* Occurs when an unexpected condition is encountered while interpreting the
@@ -26,12 +26,8 @@
26
*
27
* @see InterpretationException
28
29
-public class ParsingException extends HibernateException {
+public class ParsingException extends QueryException {
30
public ParsingException(String message) {
31
super( message );
32
}
33
-
34
- public ParsingException(String message, Throwable cause) {
35
- super( message, cause );
36
- }
37
0 commit comments