20 lines
440 B
Objective-C
20 lines
440 B
Objective-C
//
|
|
// HTMLParseErrorToken.h
|
|
// HTMLKit
|
|
//
|
|
// Created by Iska on 23/10/14.
|
|
// Copyright (c) 2014 BrainCookie. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "HTMLToken.h"
|
|
|
|
@interface HTMLParseErrorToken : HTMLToken
|
|
|
|
@property (nonatomic, copy) NSString *reason;
|
|
@property (nonatomic, assign) NSUInteger location;
|
|
|
|
- (instancetype)initWithReasonMessage:(NSString *)reason andStreamLocation:(NSUInteger)location;
|
|
|
|
@end
|