fetch ongoing matches and put them into the list
This commit is contained in:
Generated
+22
@@ -0,0 +1,22 @@
|
||||
//
|
||||
// Exception.swift
|
||||
// SwifSoup
|
||||
//
|
||||
// Created by Nabil Chatbi on 02/10/16.
|
||||
// Copyright © 2016 Nabil Chatbi.. All rights reserved.
|
||||
//
|
||||
|
||||
import Foundation
|
||||
|
||||
public enum ExceptionType {
|
||||
case IllegalArgumentException
|
||||
case IOException
|
||||
case XmlDeclaration
|
||||
case MalformedURLException
|
||||
case CloneNotSupportedException
|
||||
case SelectorParseException
|
||||
}
|
||||
|
||||
public enum Exception: Error {
|
||||
case Error(type:ExceptionType, Message: String)
|
||||
}
|
||||
Reference in New Issue
Block a user