GenericParameter.cs: override Module properly
[mcs.git] / tools / pdb2mdb / PdbException.cs
blob0dd7f93845ee3c5cbff1413114cf436f859ce8f5
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 PdbException : IOException {
11 internal PdbException(String format, params object[] args)
12 : base(String.Format(format, args)) {