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 trial

iOS Error Handling in Swift 2.0 Error Handling Throwing Errors

Reynhart de Beer
Reynhart de Beer
1,854 Points

Throwing Errors task help

Not sure how to complete this task, can someone please look at my code and help??

error.swift
enum BookError: Error {
    case IncorrectTitle(String)
}


func lend() throws ->  {
    throw BookError.IncorrectTitle("myBook")
}

1 Answer

Tassia Castro
seal-mask
.a{fill-rule:evenodd;}techdegree
Tassia Castro
iOS Development Techdegree Student 9,170 Points

Hey 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
Reynhart de Beer
1,854 Points

Thanks so much , got it right :)