I am reading Effective Java and the book has the below comment on the clone method.
In practice, a class that implements Cloneable is expected to provide a properly functioning public clone method. It is not, in general, possible to do so unless all of the class’s superclasses provide a well-behaved clone implementation, whether public or protected.
Can anyone give examples of why this can't be done ?