I have this piece of code:
try {
System.out.println("????????????????????????????????");
request.login(username, password);
System.out.println("FFFFFFFFFFFFFFFF");
} catch (Exception e) {
System.out.println("!!!!!!!!!!!!!!!!!!" + e.getMessage());
e.printStackTrace();
}
where request is HttpServletRequest output is:
????????????????????????????????
12618 ERROR org.apache.wicket.DefaultExceptionMapper - Unexpected error occurred
how I can debug this piece of code and solve where is the problem ?