/IronPython_2_0/Src/IronPython/Runtime/Exceptions/FutureWarningException.Generated.cs

# · C# · 43 lines · 17 code · 9 blank · 17 comment · 0 complexity · e0899c04446461de6e161905fe40b008 MD5 · raw file

  1. /* ****************************************************************************
  2. *
  3. * Copyright (c) Microsoft Corporation.
  4. *
  5. * This source code is subject to terms and conditions of the Microsoft Public License. A
  6. * copy of the license can be found in the License.html file at the root of this distribution. If
  7. * you cannot locate the Microsoft Public License, please send an email to
  8. * dlr@microsoft.com. By using this source code in any fashion, you are agreeing to be bound
  9. * by the terms of the Microsoft Public License.
  10. *
  11. * You must not remove this notice, or any other, from this software.
  12. *
  13. *
  14. * ***************************************************************************/
  15. using System; using Microsoft;
  16. using System.Runtime.Serialization;
  17. namespace IronPython.Runtime.Exceptions {
  18. #region Generated FutureWarningException
  19. // *** BEGIN GENERATED CODE ***
  20. // generated by function: gen_one_exception_specialized from: generate_exceptions.py
  21. [Serializable]
  22. public class FutureWarningException : WarningException {
  23. public FutureWarningException() : base() { }
  24. public FutureWarningException(string msg) : base(msg) { }
  25. public FutureWarningException(string message, Exception innerException)
  26. : base(message, innerException) {
  27. }
  28. #if !SILVERLIGHT // SerializationInfo
  29. protected FutureWarningException(SerializationInfo info, StreamingContext context) : base(info, context) { }
  30. #endif
  31. }
  32. // *** END GENERATED CODE ***
  33. #endregion
  34. }