Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialCarl Smith
8,185 PointsCompletely lost
Not sure, what to do here, I'm not sure how to use the keys property and contains method?
enum ParserError: ErrorType {
case EmptyDictionary
case InvalidKey
}
struct Parser {
var data: [String : String?]?
func parse() throws {
}
}
let data: [String : String?]? = ["someKey": nil]
let parser = Parser(data: data)
1 Answer
Steven Deutsch
21,046 PointsHey Carl Smith,
I wrote this a long time ago. https://teamtreehouse.com/community/error-handling-2
It seemed to have helped a few people. I cringe while re-reading it but possible it will help you.
If you still have questions let me know, Good Luck
Carl Smith
8,185 PointsCarl Smith
8,185 PointsThank you sooo much for that, I was really struggling with that first part. The link was not a bad read at all, thank you so much for all that.