IOExceptionIOException
An I/O operation fails or is interrupted.
DirectoryNotEmptyExceptionA directory deletion fails because the directory is not empty.
Files.delete() was called on a directory that still contains files or subdirectories. Non-empty directories cannot be deleted directly.
Delete all contents of the directory first. Use Files.walkFileTree() to recursively delete the directory and its contents. Use FileUtils.deleteDirectory() from Apache Commons.
IOExceptionAn I/O operation fails or is interrupted.
SocketExceptionA socket operation fails, such as creating or accessing a socket.
CharConversionExceptionA character encoding or decoding operation encounters an invalid byte sequence.
NoSuchMethodErrorA method is called at runtime but does not exist in the class.
ClassFormatErrorA class file has an invalid format or structure.
StackOverflowErrorThe call stack has exceeded its maximum size, usually due to deep or infinite recursion.