// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
//============================================================
//
// Class: EndOfStreamException
//
// Purpose: Exception to be thrown when reading past end-of-file.
//
//===========================================================
using System;
namespace System.IO
{
//|
public class EndOfStreamException : IOException
{
//|
public EndOfStreamException()
: base("Arg_EndOfStreamException") {
}
//|
public EndOfStreamException(String message)
: base(message) {
}
//|
public EndOfStreamException(String message, Exception innerException)
: base(message, innerException) {
}
}
}