Is there a better solution to forward a Swift error from one function to another?
In the moment, I\'m doing it like this:
enum Error:ErrorType{
You don't need to catch them they will be thrown automatically as you marked your function with throws
throws
func func1() throws { try func2() }