@@ -22,16 +22,16 @@ #import "OFSocket.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFBindFailedException \ - * OFBindFailedException.h ObjFW/OFBindFailedException.h + * @class OFBindSocketFailedException \ + * OFBindSocketFailedException.h ObjFW/OFBindSocketFailedException.h * * @brief An exception indicating that binding a socket failed. */ -@interface OFBindFailedException: OFException +@interface OFBindSocketFailedException: OFException { /* IP */ OFString *_Nullable _host; uint16_t _port; /* IPX */ @@ -38,11 +38,11 @@ uint8_t _packetType; /* UNIX socket */ OFString *_Nullable _path; id _socket; int _errNo; - OF_RESERVE_IVARS(OFBindFailedException, 4) + OF_RESERVE_IVARS(OFBindSocketFailedException, 4) } /** * @brief The host on which binding failed. */