Files
macOS-MenuBar-MatchTicker/Pods/SwiftSoup/Sources/Exception.swift
T
2018-10-09 00:30:51 +02:00

23 lines
455 B
Swift

//
// 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)
}