| File: System\IO\Error.cs | Web Access |
| Project: src\runtime\src\libraries\System.Console\src\System.Console.csproj (System.Console) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.IO { internal static class Error { internal static Exception GetFileNotOpen() { return new ObjectDisposedException(null, SR.ObjectDisposed_FileClosed); } internal static Exception GetReadNotSupported() { return new NotSupportedException(SR.NotSupported_UnreadableStream); } internal static Exception GetSeekNotSupported() { return new NotSupportedException(SR.NotSupported_UnseekableStream); } internal static Exception GetWriteNotSupported() { return new NotSupportedException(SR.NotSupported_UnwritableStream); } } }