I need to implement a deep clone in one of my objects which has no superclass.
What is the best way to handle the checked CloneNotSupportedException thr
CloneNotSupportedException
Use serialization to make deep copies. This is not the quickest solution but it does not depend on the type.