<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css" style="display:none;"> P {margin-top:0;margin-bottom:0;} </style>
</head>
<body dir="ltr">
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);" class="elementToProof ContentPasted0 ContentPasted1">
Hello JDK Community! <span id="πŸ™‚">πŸ™‚</span></div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);" class="elementToProof ContentPasted0 ContentPasted1">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);" class="elementToProof ContentPasted0 ContentPasted1">
The current ClosedChannelException does not have any constructors to pass a message. We have to rely on 'initCause(...)'​ for passing extra messages regarding a ClosedChannelException but it's not a very good practice in my opinion. Because we will have to
 generate another Exception which will create another brand-new object in the heap and generates a stack trace. And all of this just to pass a simple message for ClosedChannelException.</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);" class="elementToProof ContentPasted0 ContentPasted1">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);" class="elementToProof ContentPasted0 ContentPasted1">
<span style="font-size:12pt;margin:0px;background-color:rgb(255, 255, 255)" class="ContentPasted4">When we log ClosedChannelException, we get something like this in our loggers:</span></div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);" class="elementToProof ContentPasted0 ContentPasted1">
<div style="font-size:12pt;margin:0px;background-color:rgb(255, 255, 255)" class="ContentPasted4">
```</div>
<div style="font-size:12pt;margin:0px;background-color:rgb(255, 255, 255)" class="ContentPasted4 elementToProof">
java.nio.channels.ClosedChannelException: null<br class="ContentPasted4">
</div>
<div style="font-size:12pt;margin:0px;background-color:rgb(255, 255, 255)" class="ContentPasted4 elementToProof">
<span>      at foo.bar(Meow.java:9999)</span></div>
<div style="font-size:12pt;margin:0px;background-color:rgb(255, 255, 255)" class="ContentPasted4">
```</div>
<div style="font-size:12pt;margin:0px;background-color:rgb(255, 255, 255)" class="ContentPasted4">
<br>
</div>
</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);" class="elementToProof ContentPasted0 ContentPasted1">
Honestly, it's not helpful at all. Netty[1] suffers from this same problem but we have added a new suppressed Stackless exception in <span style="background-color:rgb(255, 255, 255);display:inline !important" class="ContentPasted3">ClosedChannelException which
 will help us give more context to users about the exception but this is really a workaround.</span></div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);" class="elementToProof ContentPasted0 ContentPasted1">
<span style="background-color:rgb(255, 255, 255);display:inline !important" class="ContentPasted3"><br class="ContentPasted5">
<span style="background-color:rgb(255, 255, 255);display:inline !important" class="ContentPasted5">In my opinion, we can add extra constructors in ClosedChannelException which will accept messages and we can have a good exception at the end.</span><br>
</span></div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);" class="elementToProof ContentPasted0 ContentPasted1">
<span style="background-color:rgb(255, 255, 255);display:inline !important" class="ContentPasted3"><br>
</span></div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);" class="elementToProof ContentPasted0 ContentPasted1">
I'd like to have everyone's opinion on this and see how we can tackle this.<br>
<br>
Thanks!</div>
</body>
</html>