Skip to content
Open
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
2 changes: 1 addition & 1 deletion modules/web/src/com/haulmont/cuba/web/sys/WebScreens.java
Original file line number Diff line number Diff line change
Expand Up @@ -951,7 +951,7 @@ protected <T extends Screen> T createController(@SuppressWarnings("unused") Wind
controller = invokeConstructor(screenClass);
} catch (NoSuchMethodException | InstantiationException
| IllegalAccessException | InvocationTargetException e) {
throw new RuntimeException("Unable to create instance of screen class " + screenClass);
throw new RuntimeException("Unable to create instance of screen class " + screenClass, e);
}

return controller;
Expand Down