StreamOverflowException.cs 556 B

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