what cause error during dealloaction
package com.codegym.task.task06.task0604;
/*
Cat counter
*/
public class Cat {
public static int catCount = 0;
public Cat(){
Cat.catCount++;
}
protected void finalize() throws Throwable{
System.out.println();
}
public static void main(String[] args) {
}
}