Пример

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


Решение
Должен быть только один метод clone.

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