change the format of an exception msg

This commit is contained in:
Gavin 2023-05-20 14:39:35 +02:00 committed by Gavin King
parent 60cec44467
commit d9d5ea57d4
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ public class InstantiationException extends HibernateException {
@Override
public String getMessage() {
return super.getMessage() + " : " + clazz.getName();
return super.getMessage() + " '" + clazz.getName() + "'";
}
}