Google Coding Standard for Objective C says we should not throw exceptions, what are the alternatives to @throw then?
|
| |||||
feedback
|
|
One possibility is to deliver extended exception information via
The caller can test if the call succeeded by inspecting the result value. If more information is required in case of an error, it can supply a location, where the method can store additional information into:
| |||||||
feedback
|