/symbols/pdb/Microsoft.Cci.Pdb/PdbException.cs

http://github.com/jbevain/cecil · C# · 13 lines · 9 code · 2 blank · 2 comment · 0 complexity · 478d33ad9b5bf3947cbe40d6cc4a9d0a MD5 · raw file

  1. // Copyright (c) Microsoft. All rights reserved.
  2. // Licensed under the MIT license. See LICENSE file in the project root for full license information.
  3. using System;
  4. using System.IO;
  5. namespace Microsoft.Cci.Pdb {
  6. internal class PdbException : IOException {
  7. internal PdbException(String format, params object[] args)
  8. : base(String.Format(format, args)) {
  9. }
  10. }
  11. }