You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
464 B

  1. #if !NET20
  2. using System;
  3. namespace Apewer.WebSocket
  4. {
  5. internal class ConnectionNotAvailableException : Exception
  6. {
  7. public ConnectionNotAvailableException() : base()
  8. {
  9. }
  10. public ConnectionNotAvailableException(string message) : base(message)
  11. {
  12. }
  13. public ConnectionNotAvailableException(string message, Exception innerException) : base(message, innerException)
  14. {
  15. }
  16. }
  17. }
  18. #endif