Line | |
---|
1 | //----------------------------------------------------------------------------- |
---|
2 | // |
---|
3 | // Copyright (C) Microsoft Corporation. All Rights Reserved. |
---|
4 | // |
---|
5 | //----------------------------------------------------------------------------- |
---|
6 | using System; |
---|
7 | using System.IO; |
---|
8 | |
---|
9 | namespace Microsoft.Cci.Pdb { |
---|
10 | internal class PdbDebugException : IOException { |
---|
11 | internal PdbDebugException(String format, params object[] args) |
---|
12 | : base(String.Format(format, args)) { |
---|
13 | } |
---|
14 | } |
---|
15 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.