// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
/*============================================================
**
** Class: EndOfStreamException
**
**
** Purpose: Exception to be thrown when reading past end-of-file.
**
** Date: February 18, 2000
**
===========================================================*/
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) {
}
}
}