/symbols/pdb/Microsoft.Cci.Pdb/PdbDebugException.cs
http://github.com/jbevain/cecil · C# · 13 lines · 9 code · 2 blank · 2 comment · 0 complexity · b992a5224d7f98f489af201f284bcf8e MD5 · raw file
- // Copyright (c) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE file in the project root for full license information.
- using System;
- using System.IO;
- namespace Microsoft.Cci.Pdb {
- internal class PdbDebugException : IOException {
- internal PdbDebugException(String format, params object[] args)
- : base(String.Format(format, args)) {
- }
- }
- }