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 trialReynhart de Beer
1,854 PointsThrowing Errors task help
Not sure how to complete this task, can someone please look at my code and help??
enum BookError: Error {
case IncorrectTitle(String)
}
func lend() throws -> {
throw BookError.IncorrectTitle("myBook")
}
1 Answer
Tassia Castro
iOS Development Techdegree Student 9,170 PointsHey Reynhar,
enum BookError: ErrorType { // As this is an error, the rawValue is defined to be of type ErrorType
case IncorrectTitle(String)
}
func lend() throws { // As the method does not return anything you don't need an arrow here
throw BookError.IncorrectTitle("myBook")
}
Reynhart de Beer
1,854 PointsReynhart de Beer
1,854 PointsThanks so much , got it right :)