fix message in exception screen
This commit is contained in:
@@ -179,7 +179,8 @@ public class Screeners {
|
|||||||
public static void showException(Throwable ex){
|
public static void showException(Throwable ex){
|
||||||
Alert alert = new Alert(Alert.AlertType.ERROR);
|
Alert alert = new Alert(Alert.AlertType.ERROR);
|
||||||
alert.setTitle("Exception Dialog");
|
alert.setTitle("Exception Dialog");
|
||||||
alert.setHeaderText(ex.getLocalizedMessage());
|
String text = ex.getLocalizedMessage();
|
||||||
|
alert.setHeaderText(text != null ? text : ex.getMessage());
|
||||||
|
|
||||||
// Create expandable Exception.
|
// Create expandable Exception.
|
||||||
StringWriter sw = new StringWriter();
|
StringWriter sw = new StringWriter();
|
||||||
|
|||||||
Reference in New Issue
Block a user