From 3f1327b8eaa463f5db08080e1d39813b89fe3384 Mon Sep 17 00:00:00 2001 From: alcexhim Date: Mon, 1 Dec 2014 14:01:12 -0500 Subject: [PATCH] Added comments --- .../Libraries/UniversalEditor.Core/IO/EndOfStreamException.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CSharp/Libraries/UniversalEditor.Core/IO/EndOfStreamException.cs b/CSharp/Libraries/UniversalEditor.Core/IO/EndOfStreamException.cs index 815cab94..4bbd7680 100644 --- a/CSharp/Libraries/UniversalEditor.Core/IO/EndOfStreamException.cs +++ b/CSharp/Libraries/UniversalEditor.Core/IO/EndOfStreamException.cs @@ -5,6 +5,9 @@ using System.Text; namespace UniversalEditor.IO { + /// + /// The exception that is thrown when reading is attempted past the end of a stream. + /// public class EndOfStreamException : Exception { }