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

http://github.com/icsharpcode/ILSpy · C# · 20 lines · 9 code · 1 blank · 10 comment · 0 complexity · cd374c7b5d2dd58e783819a5105bceda MD5 · raw file

  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 PdbException : IOException {
  15. internal PdbException(String format, params object[] args)
  16. : base(String.Format(format, args)) {
  17. }
  18. }
  19. }