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.

17 lines
455 B

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