PdbDebugException.cs 720 B

1234567891011121314151617181920
  1. //-----------------------------------------------------------------------------
  2. //
  3. // Copyright (c) Microsoft. All rights reserved.
  4. // This code is licensed under the Microsoft Public License.
  5. // THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF
  6. // ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY
  7. // IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR
  8. // PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.
  9. //
  10. //-----------------------------------------------------------------------------
  11. using System;
  12. using System.IO;
  13. namespace Microsoft.Cci.Pdb {
  14. internal class PdbDebugException : IOException {
  15. internal PdbDebugException(String format, params object[] args)
  16. : base(String.Format(format, args)) {
  17. }
  18. }
  19. }