Correctness33 - SpotBugsExtensionForSpringFrameWork/CS5098 GitHub Wiki
Correctness - Custom Exception in Bean Creation Process
Description
A bean that throws an exception during its creation process; a simplified sample to easily exemplify and understand the problem is throwing an exception in the constructor of the bean:
@Component
public class BeanA {
public BeanA() {
super();
throw new NullPointerException();
}
...
}
Theory
Solution
- Remove throw exception action
- Data error or logical error.