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

View File

@ -59,7 +59,7 @@ public Class<?> getUninstantiatableClass() {
@Override
public String getMessage() {
return super.getMessage() + " : " + clazz.getName();
return super.getMessage() + " '" + clazz.getName() + "'";
}
}