@@ -5,33 +5,33 @@ class AirOSException(Exception):
55 """Base error class for this AirOS library."""
66
77
8- class ConnectionSetupError (AirOSException ):
8+ class AirOSConnectionSetupError (AirOSException ):
99 """Raised when unable to prepare authentication."""
1010
1111
12- class ConnectionAuthenticationError (AirOSException ):
12+ class AirOSConnectionAuthenticationError (AirOSException ):
1313 """Raised when unable to authenticate."""
1414
1515
16- class DataMissingError (AirOSException ):
16+ class AirOSDataMissingError (AirOSException ):
1717 """Raised when expected data is missing."""
1818
1919
20- class KeyDataMissingError (AirOSException ):
20+ class AirOSKeyDataMissingError (AirOSException ):
2121 """Raised when return data is missing critical keys."""
2222
2323
24- class DeviceConnectionError (AirOSException ):
24+ class AirOSDeviceConnectionError (AirOSException ):
2525 """Raised when unable to connect."""
2626
2727
28- class AirosDiscoveryError (AirOSException ):
29- """Base exception for Airos discovery issues."""
28+ class AirOSDiscoveryError (AirOSException ):
29+ """Base exception for AirOS discovery issues."""
3030
3131
32- class AirosListenerError ( AirosDiscoveryError ):
33- """Raised when the Airos listener encounters an error."""
32+ class AirOSListenerError ( AirOSDiscoveryError ):
33+ """Raised when the AirOS listener encounters an error."""
3434
3535
36- class AirosEndpointError ( AirosDiscoveryError ):
36+ class AirOSEndpointError ( AirOSDiscoveryError ):
3737 """Raised when there's an issue with the network endpoint."""
0 commit comments