Initial commit; substitutions can be reviewed, no further functionality implemented yet

This commit is contained in:
Deniz Duezgoeren
2019-07-09 19:39:06 +02:00
commit 860d87f446
169 changed files with 30855 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
//
// ParseError.swift
// SwiftSoup
//
// Created by Nabil Chatbi on 19/10/16.
// Copyright © 2016 Nabil Chatbi.. All rights reserved.
//
import Foundation
/**
* A Parse Error records an error in the input HTML that occurs in either the tokenisation or the tree building phase.
*/
open class ParseError {
private let pos: Int
private let errorMsg: String
init(_ pos: Int, _ errorMsg: String) {
self.pos = pos
self.errorMsg = errorMsg
}
/**
* Retrieve the error message.
* @return the error message.
*/
open func getErrorMessage() -> String {
return errorMsg
}
/**
* Retrieves the offset of the error.
* @return error offset within input
*/
open func getPosition() -> Int {
return pos
}
open func toString() -> String {
return "\(pos): " + errorMsg
}
}