retag
[mcs.git] / tools / pdb2mdb / PdbDebugException.cs
blob515dc37c76add8f5a456219ff435a774a3df1402
1 //-----------------------------------------------------------------------------
2 //
3 // Copyright (C) Microsoft Corporation. All Rights Reserved.
4 //
5 //-----------------------------------------------------------------------------
6 using System;
7 using System.IO;
9 namespace Microsoft.Cci.Pdb {
10 internal class PdbDebugException : IOException {
11 internal PdbDebugException(String format, params object[] args)
12 : base(String.Format(format, args)) {