You have a function from the library (already in the task scope). You can't open its source code, but you know that the prototype looks like this:
def parseSpecialNumber(s: String): Int
This function can throw errors. Fix the code so that the tryPrintSpecialNumber catches all errors and prints their message. If successful, the function should just print the number that is returned.