Improve deprecated exception message
Update the exception message so that it includes the class name of the implementation. See gh-22497
This commit is contained in:
parent
1c22ec9373
commit
84bcd0eb1e
|
@ -192,8 +192,8 @@ public class ConfigFileApplicationListener implements EnvironmentPostProcessor,
|
|||
|
||||
@Override
|
||||
public void onApplicationEvent(ApplicationEvent event) {
|
||||
throw new IllegalStateException(
|
||||
"ConfigFileApplicationListener is deprecated and can only be used as an EnvironmentPostProcessor");
|
||||
throw new IllegalStateException("ConfigFileApplicationListener [" + getClass().getName()
|
||||
+ "] is deprecated and can only be used as an EnvironmentPostProcessor");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue