StdOutException.cs 282 B

12345678910111213
  1. using System;
  2. namespace WinSCP
  3. {
  4. internal class StdOutException : Exception
  5. {
  6. public StdOutException() :
  7. // when the data are expected, the exception does not leave the API
  8. base("Unexpected data")
  9. {
  10. }
  11. }
  12. }