20#import "OFConnectSocketFailedException.h"
22OF_ASSUME_NONNULL_BEGIN
31OF_SUBCLASSING_RESTRICTED
40@property OF_NULLABLE_PROPERTY (readonly, nonatomic)
OFString *
path;
50+ (instancetype)exceptionWithPath: (
OFString *)path
54+ (instancetype)exceptionWithSocket: (
id)socket
55 errNo: (
int)errNo OF_UNAVAILABLE;
65- (instancetype)initWithPath: (
OFString *)path
67 errNo: (
int)errNo OF_DESIGNATED_INITIALIZER;
69- (instancetype)initWithSocket: (
id)socket errNo: (
int)errNo OF_UNAVAILABLE;
An exception indicating that a connection could not be established.
Definition OFConnectSocketFailedException.h:37
An exception indicating that a UNIX socket connection could not be established.
Definition OFConnectUNIXSocketFailedException.h:33
OFString * path
The path to which the connection failed.
Definition OFConnectUNIXSocketFailedException.h:40
A class for handling strings.
Definition OFString.h:143