Open GoogleCodeExporter opened 8 years ago
Hi,
I have added a block of code in my AQUERY library.
com.androidquery.callback.AbstractAjaxCallback
networkWork() method
in catch block
catch(Exception e){
AQUtility.debug(e);
if(e.getClass().equals(SSLPeerUnverifiedException.class)){
//e.getMessage() :- No peer certificate
//e.getClass :- class javax.net.ssl.SSLPeerUnverifiedException
status.code(AjaxStatus.NETWORK_ERROR).message(e.getMessage());
}else{
status.code(AjaxStatus.NETWORK_ERROR).message("network error");
}
}
Original comment by nishant....@raweng.com
on 23 Jul 2013 at 11:50
Original issue reported on code.google.com by
nishant....@raweng.com
on 25 Jun 2013 at 9:46