get rid of backticks in error message

This commit is contained in:
Gavin 2023-06-08 16:27:54 +02:00 committed by Gavin King
parent 33c9338520
commit 4bbf67fb3b
1 changed files with 1 additions and 1 deletions

View File

@ -16,6 +16,6 @@ import org.hibernate.QueryException;
*/ */
public class UnknownNamedQueryException extends QueryException { public class UnknownNamedQueryException extends QueryException {
public UnknownNamedQueryException(String queryName) { public UnknownNamedQueryException(String queryName) {
super( "No query is registered under the name `" + queryName + "`" ); super( "No query is registered under the name '" + queryName + "'" );
} }
} }