Hi
How can I update the
code below to run with ULC 6.1.1?
This code is used
for debugging purposes (in development runner), detecting values to be sent to
the client which are of a type not supported for serialization. Basically, I
want to get an exception if the value is of a type that cannot be handled by any
installed coder.
try {
Anything.fromObject(value);
} catch (RuntimeException rte) {
System.err.println("Illegal class type: " + value.getClass());
}
Anything.fromObject(value);
} catch (RuntimeException rte) {
System.err.println("Illegal class type: " + value.getClass());
}
Thanks,
Etienne
