TimeZoneNotFoundException.cs 940 B

12345678910111213141516171819202122232425262728293031
  1. // Licensed to the .NET Foundation under one or more agreements.
  2. // The .NET Foundation licenses this file to you under the MIT license.
  3. // See the LICENSE file in the project root for more information.
  4. using System.Runtime.Serialization;
  5. namespace System
  6. {
  7. [Serializable]
  8. [System.Runtime.CompilerServices.TypeForwardedFrom("System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")]
  9. public class TimeZoneNotFoundException : Exception
  10. {
  11. public TimeZoneNotFoundException()
  12. {
  13. }
  14. public TimeZoneNotFoundException(string message)
  15. : base(message)
  16. {
  17. }
  18. public TimeZoneNotFoundException(string message, Exception innerException)
  19. : base(message, innerException)
  20. {
  21. }
  22. protected TimeZoneNotFoundException(SerializationInfo info, StreamingContext context) : base(info, context)
  23. {
  24. }
  25. }
  26. }