mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-28 02:20:54 +01:00
20 lines
353 B
C
20 lines
353 B
C
|
//
|
||
|
// RSOPMLError.h
|
||
|
// RSParser
|
||
|
//
|
||
|
// Created by Brent Simmons on 2/28/16.
|
||
|
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
|
||
|
//
|
||
|
|
||
|
@import Foundation;
|
||
|
|
||
|
extern NSString *RSOPMLErrorDomain;
|
||
|
|
||
|
|
||
|
typedef NS_ENUM(NSInteger, RSOPMLErrorCode) {
|
||
|
RSOPMLErrorCodeDataIsWrongFormat = 1024
|
||
|
};
|
||
|
|
||
|
|
||
|
NSError *RSOPMLWrongFormatError(NSString *fileName);
|