StreamOverflowException.cs 638 B

12345678910111213141516171819202122232425262728293031323334
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. using System;
  4. using System.IO;
  5. namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.IO
  6. {
  7. #if !(NETCF_1_0 || NETCF_2_0 || SILVERLIGHT || PORTABLE || NETFX_CORE)
  8. [Serializable]
  9. #endif
  10. public class StreamOverflowException
  11. : IOException
  12. {
  13. public StreamOverflowException()
  14. : base()
  15. {
  16. }
  17. public StreamOverflowException(
  18. string message)
  19. : base(message)
  20. {
  21. }
  22. public StreamOverflowException(
  23. string message,
  24. Exception exception)
  25. : base(message, exception)
  26. {
  27. }
  28. }
  29. }
  30. #pragma warning restore
  31. #endif