サンプル

public class ClassA implements Cloneable {
public final void clone throws CloneNotSupportedException () {
//...
}

ソリューション
clone メソッドの適切なシグニチャーに従います

public class ClassA implements Cloneable {
public final Object clone throws CloneNotSupportedException () {
//...
}
}