Package io.jmix.ui
Interface Dialogs.ExceptionDialogBuilder
- All Superinterfaces:
Dialogs.HasCaption<Dialogs.ExceptionDialogBuilder>
,Dialogs.HasMessage<Dialogs.ExceptionDialogBuilder>
,Dialogs.HasModal<Dialogs.ExceptionDialogBuilder>
- All Known Implementing Classes:
DialogsImpl.ExceptionDialogBuilderImpl
- Enclosing interface:
- Dialogs
public static interface Dialogs.ExceptionDialogBuilder
extends Dialogs.HasCaption<Dialogs.ExceptionDialogBuilder>, Dialogs.HasMessage<Dialogs.ExceptionDialogBuilder>, Dialogs.HasModal<Dialogs.ExceptionDialogBuilder>
Builder of unhandled exception dialog.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
show()
Shows the dialog.withThrowable
(Throwable throwable) Sets exception object.Methods inherited from interface io.jmix.ui.Dialogs.HasCaption
getCaption, withCaption
Methods inherited from interface io.jmix.ui.Dialogs.HasMessage
getMessage, withMessage
Methods inherited from interface io.jmix.ui.Dialogs.HasModal
isModal, modal, withModal
-
Method Details
-
withThrowable
Sets exception object.- Parameters:
throwable
- throwable- Returns:
- builder
-
getThrowable
Throwable getThrowable()- Returns:
- throwable
-
show
void show()Shows the dialog.
-