// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
/*============================================================
**
** Class: IOException
**
**
** Purpose: Exception for a generic IO error.
**
** Date: February 18, 2000
**
===========================================================*/
using System;
namespace System.IO {
//|
public class IOException : SystemException
{
//|
public IOException()
: base("Arg_IOException") {
}
//|
public IOException(String message)
: base(message) {
}
//|
public IOException(String message, int hresult)
: base(message) {
}
//|
public IOException(String message, Exception innerException)
: base(message, innerException) {
}
}
}