2025-03-03 20:25:36 +01:00
|
|
|
|
|
|
|
|
class NotReadyToRun(Exception):
|
|
|
|
|
"raise this exception if the stream state is not ready to parse this object, the call will be skipped"
|
2025-03-03 21:15:49 +01:00
|
|
|
|
|
|
|
|
class DropPacket(Exception):
|
|
|
|
|
"raise this exception if you want to drop the packet"
|
|
|
|
|
|
|
|
|
|
class StreamFullDrop(Exception):
|
|
|
|
|
"raise this exception if you want to drop the packet due to full stream"
|
|
|
|
|
|
|
|
|
|
class RejectConnection(Exception):
|
|
|
|
|
"raise this exception if you want to reject the connection"
|
|
|
|
|
|
|
|
|
|
class StreamFullReject(Exception):
|
2025-03-03 23:55:24 +01:00
|
|
|
"raise this exception if you want to reject the connection due to full stream"
|