This is more of a C question but here it goes.
I've a method that receives as a parameter the address of a pointer to an NSError object. Now, that method is buried several levels deep in the class hierarchy and I need to make the error object bubble all the way to the top.
I could return the error object on each method but I'd rather do it the Cocoa way and return a boolean while passing the error object as a parameter.
How can I do this?