Checked exception received by a thread when another thread interrupts it
while it is blocked in an I/O operation upon a channel. Before this
exception is thrown the channel will have been closed and the interrupt
status of the previously-blocked thread will have been set.
Returns an array containing all of the exceptions that were
suppressed, typically by the try-with-resources
statement, in order to deliver this exception.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-07-10 UTC."],[],["`ClosedByInterruptException` is a checked exception thrown when a thread, blocked in an I/O operation on a channel, is interrupted by another thread. This action closes the channel and sets the interrupted thread's status. This class inherits methods to manage suppressed exceptions, stack traces, and causes. A public constructor `ClosedByInterruptException()` is available to create instances. It also provides functionalities for getting localized messages, stack traces, and detail messages.\n"]]