Coverage for pure3270/protocol/exceptions.py: 100%
6 statements
« prev ^ index » next coverage.py v7.10.6, created at 2025-09-11 20:54 +0000
« prev ^ index » next coverage.py v7.10.6, created at 2025-09-11 20:54 +0000
1"""Exceptions for protocol handling."""
4class NegotiationError(Exception):
5 """Raised on negotiation failure."""
7 pass
10class ProtocolError(Exception):
11 """Raised on protocol errors."""
13 pass
16class ParseError(Exception):
17 """Raised on parsing errors."""
19 pass