Updated with review feedback.
[mono.git] / mcs / tools / pdb2mdb / PdbException.cs
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 PdbException : IOException {
11     internal PdbException(String format, params object[] args)
12       : base(String.Format(format, args)) {
13     }
14   }
15 }