class Kloon1 implements Cloneable{ String nimi; int mass; public Object clone(){ Object o=null; try{ o=super.clone(); }catch(CloneNotSupportedException e){} return o; } }