mirror of
https://github.com/ish-app/ish.git
synced 2026-02-01 14:32:26 +00:00
21 lines
343 B
Objective-C
21 lines
343 B
Objective-C
//
|
|
// NSError+ISHErrno.h
|
|
// iSH
|
|
//
|
|
// Created by Theodore Dubois on 12/15/18.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface NSError (ISHErrno)
|
|
|
|
+ (NSError *)errorWithISHErrno:(long)err itemIdentifier:(NSFileProviderItemIdentifier)identifier;
|
|
|
|
@end
|
|
|
|
extern NSString *const ISHErrnoDomain;
|
|
|
|
NS_ASSUME_NONNULL_END
|