Ejemplo

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


Solución
Sólo debe haber un método clone..

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