Is there a way to get from the IOException object the file that fails?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
No, because |
|||||||
|
|
IOException is thrown for much more than just file access. You can subclass IOException and throw that if you want, and you can attach arbitrary fields to the subclassed exception. From there, you would probably have to catch IOExceptions and rethrow them as IOExceptionWithFileInformation where appropriate. |
|||
|
|
|
Note that IOException instances are not necessarilly related to files. Furthermore, the ones referring specifically to files (e.g. FileNotFoundException) do not seem to have a field with the file path. You may extract the file name from the description. |
|||
|
|
