/Mono.Cecil/symbols/pdb/Microsoft.Cci.Pdb/PdbException.cs
http://github.com/icsharpcode/ILSpy · C# · 20 lines · 9 code · 1 blank · 10 comment · 0 complexity · cd374c7b5d2dd58e783819a5105bceda MD5 · raw file
- //-----------------------------------------------------------------------------
- //
- // Copyright (c) Microsoft. All rights reserved.
- // This code is licensed under the Microsoft Public License.
- // THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF
- // ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY
- // IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR
- // PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.
- //
- //-----------------------------------------------------------------------------
- using System;
- using System.IO;
- namespace Microsoft.Cci.Pdb {
- internal class PdbException : IOException {
- internal PdbException(String format, params object[] args)
- : base(String.Format(format, args)) {
- }
- }
- }