The smartgwt version is 2
Hi,
In my client side code, I have the following snippet
String s = "abc";
String substr = s.substring(0,37);
As per the above code, it should tell me array index bound of exception. Offcourse it says this exception when my code runs in Jetty server.
But when it deployed in weblogic server the same client side code does not say that there is an array index out of bound exception.
could any one tell me why this strange behaviour is ?
Hi,
In my client side code, I have the following snippet
String s = "abc";
String substr = s.substring(0,37);
As per the above code, it should tell me array index bound of exception. Offcourse it says this exception when my code runs in Jetty server.
But when it deployed in weblogic server the same client side code does not say that there is an array index out of bound exception.
could any one tell me why this strange behaviour is ?
Comment