Skip to content

Commit a099d72

Browse files
Hide missleading exception (#1070)
Co-authored-by: Lalit Kumar Bhasin <[email protected]>
1 parent 9b53821 commit a099d72

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tools/decoder/Decoder.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
using Newtonsoft.Json.Linq;
2727
using CsProtocol;
2828
using System.Linq;
29+
using Fiddler;
2930

3031
namespace CommonSchema
3132
{
@@ -325,6 +326,10 @@ public List<string> FromBondToJSONList(bool outputCompactJson = true, bool flatE
325326
outputBuffer.SetLength(0);
326327
} while (true);
327328
}
329+
catch (EndOfStreamException)
330+
{
331+
Logger.LogDebug("End of Binary Stream");
332+
}
328333
catch (Exception ex)
329334
{
330335
// end of input

0 commit comments

Comments
 (0)