PdbDebugException.cs 389 B

12345678910111213
  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 PdbDebugException : IOException {
  7. internal PdbDebugException(String format, params object[] args)
  8. : base(String.Format(format, args)) {
  9. }
  10. }
  11. }