Returns false only when there is no error, otherwise true.
void myCallback(Handle data, Error error) { if (error) throw error.makeException; // only start using `data` from this point on }
See Implementation
Returns false only when there is no error, otherwise true.