Checks for unnecessary constructor in classes that contain only static methods or fields.
Instantiating static classes does not make sense.
So this check helps to find unnecessary constructors in static/utility classes.
Configuration
{
"type": "UnnecessaryConstructor",
"props": {
"severity": "ERROR"
}
}