20#import "OFConnectSocketFailedException.h"
22OF_ASSUME_NONNULL_BEGIN
32OF_SUBCLASSING_RESTRICTED
41@property OF_NULLABLE_PROPERTY (readonly, nonatomic)
OFString *
path;
51+ (instancetype)exceptionWithPath: (
OFString *)path
55+ (instancetype)exceptionWithSocket: (
id)socket
56 errNo: (
int)errNo OF_UNAVAILABLE;
66- (instancetype)initWithPath: (
OFString *)path
68 errNo: (
int)errNo OF_DESIGNATED_INITIALIZER;
70- (instancetype)initWithSocket: (
id)socket errNo: (
int)errNo OF_UNAVAILABLE;
An exception indicating that a connection could not be established.
Definition OFConnectSocketFailedException.h:38
An exception indicating that a UNIX socket connection could not be established.
Definition OFConnectUNIXSocketFailedException.h:34
OFString * path
The path to which the connection failed.
Definition OFConnectUNIXSocketFailedException.h:41
A class for handling strings.
Definition OFString.h:139