[Solved] ToString on Object generate error
It seems as if the reason you’re getting an error is because the userReadables is initially set to a null string. in the catch, you have catch(Exception e) { userReadables = null; } and since the userReadables is already null, it’s calling the Exception before it does anything else. Make it something related to the … Read more