On Sun, 22 Feb 2026 00:30:31 GMT, Jean-Noël Rouvignac <[email protected]> wrote:
>> Renjith Kannath Pariyangad has updated the pull request incrementally with
>> one additional commit since the last revision:
>>
>> Updated copyright year
>
> src/java.desktop/share/classes/sun/print/RasterPrinterJob.java line 1614:
>
>> 1612:
>> 1613: } catch (Throwable printError) {
>> 1614: if (printError instanceof PrinterException) {
>
> Suggestion:
>
> } catch (PrinterException e) {
> throw e;
> } catch (Throwable printError) {
> throw (PrinterException)
> new PrinterException().initCause(printError.getCause());
Thank you @JnRouvignac, for you time and suggestion, I have updated based on
your suggestion.
-------------
PR Review Comment: https://git.openjdk.org/jdk/pull/29733#discussion_r2844322126