48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
/**
* @brief Creates a new, autoreleased accept failed exception.
*
* @param socket The socket which could not accept a connection
* @param errNo The errno for the error
* @return A new, autoreleased accept failed exception
*/
+ (instancetype)exceptionWithSocket: (id)socket
errNo: (int)errNo;
- (instancetype)init OF_UNAVAILABLE;
/**
* @brief Initializes an already allocated accept failed exception.
*
* @param socket The socket which could not accept a connection
|
|
<
|
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
/**
* @brief Creates a new, autoreleased accept failed exception.
*
* @param socket The socket which could not accept a connection
* @param errNo The errno for the error
* @return A new, autoreleased accept failed exception
*/
+ (instancetype)exceptionWithSocket: (id)socket errNo: (int)errNo;
- (instancetype)init OF_UNAVAILABLE;
/**
* @brief Initializes an already allocated accept failed exception.
*
* @param socket The socket which could not accept a connection
|