I am using PMD plugin in my Java Project.
When I run the PMD it shows the warning as "Document Empty Constructor ".
My code is as follows...
public class ExceptionHandlerImpl implements ExceptionHandler {
private static final Logger log = Logger
.getLogger(ExceptionHandlerImpl.class);
/**
* Default Constructor
*/
public ExceptionHandlerImpl()
{
super();
}
On the above constructor code it is showing "Document Empty Constructor".
How do I resolve this and why this is occurring?