ConnectionException.php 215 B

1234567891011
  1. <?php
  2. namespace WebSocket;
  3. class ConnectionException extends Exception
  4. {
  5. // Native codes in interval 0-106
  6. public const TIMED_OUT = 1024;
  7. public const EOF = 1025;
  8. public const BAD_OPCODE = 1026;
  9. }