get rid of backticks in error message
This commit is contained in:
parent
33c9338520
commit
4bbf67fb3b
|
@ -16,6 +16,6 @@ import org.hibernate.QueryException;
|
|||
*/
|
||||
public class UnknownNamedQueryException extends QueryException {
|
||||
public UnknownNamedQueryException(String queryName) {
|
||||
super( "No query is registered under the name `" + queryName + "`" );
|
||||
super( "No query is registered under the name '" + queryName + "'" );
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue