onHTTPError:errorMessage:httpHeaders:(int, NSString *, NSDictionary *) method

Called when the ODPHTTPErrorListenerDelegate protocol is implemented by the class to receive the HTTP error details.

Syntax

public virtual void onHTTPError:errorMessage:httpHeaders: (int code, NSString * message, NSDictionary * headers)

Usage

The application has to implement the method to receive the error message and the HTTP headers. 
 Usage

 -(void)onHTTPError:(int)code errorMessage:(NSString*)message httpHeaders:(NSDictionary*)headers
 {
     // Error handling using the error message and headers
 }