Hello all,
i have developed restlet based application , in which when exception thrown
from server side i am unable to catch it at client side.
i just got only this msg
"Exception in thread "AWT-EventQueue-0" Internal Server Error (500) -
Internal Server Error"
for example
if i code like this
at server side :::
public class XYZResourceImpl extends ServerResource implements XYXResource {
@Get
public ArrayList<XYZ> getXYZ() throws XYZCRUDException {
throw new XYZCRUDException ();
}
}
then how can i detect at client side that XYZCRUDException is occurred?
--
View this message in context:
http://restlet-discuss.1400322.n2.nabble.com/unable-to-catch-exception-at-client-side-which-is-thrown-from-server-tp7161104p7161104.html
Sent from the Restlet Discuss mailing list archive at Nabble.com.
------------------------------------------------------
http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2906714