blog-example-code icon indicating copy to clipboard operation
blog-example-code copied to clipboard

Example code for my blog entries

Results 2 blog-example-code issues
Sort by recently updated
recently updated
newest added

When parsing the UUID from String you can have a `NumberFormatException` if the user send a malformed id, like as `11111111-1111-1111-1111-111111111111x`. ``` java.lang.NumberFormatException: For input string: "111111111111x" at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65) ```...