Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ public void doExecute() throws Exception
}
catch (Throwable e)
{
handleException(e.getClass().getName(), e.getMessage(), CommonUtil.getStackTraceAsString(e));
cleanup(); // Antes de hacer el rethrow, hago un cleanup del objeto
throw e;
}
Expand All @@ -157,6 +158,8 @@ public void doExecute() throws Exception
}
}

public void handleException(String gxExceptionType, String gxExceptionDetails, String gxExceptionStack) {
}
public void executeUsercontrolMethod(String CmpContext, boolean IsMasterPage, String containerName, String methodName, String input, Object[] parms)
{
httpContext.executeUsercontrolMethod(CmpContext, IsMasterPage, containerName, methodName, input, parms);
Expand Down
1 change: 1 addition & 0 deletions gxweb/src/main/java/com/genexus/webpanels/GXWebPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -452,6 +452,7 @@ public void doExecute() throws Exception
}
catch (Throwable e)
{
handleException(e.getClass().getName(), e.getMessage(), CommonUtil.getStackTraceAsString(e));
cleanup(); // Antes de hacer el rethrow, hago un cleanup del objeto
throw e;
}
Expand Down