I have this exception and I don\'t understand why it would be thrown or, how I should handle it.
try {
os.writeObject(element);
} catch (IOException e)
The fields of your object have in turn their fields, some of which do not implement Serializable
. In your case the offending class is TransformGroup
. How to solve it?
Serializable
transient