public class DialogException extends Exception:
Reports a file or folder dialog backend failure.
User cancellation is not an error and is reported by showDialog() returning false. This exception is reserved for failures such as an unavailable filesystem resource or an operating-system dialog error.
import klyn.gui.windows.dialogs try: OpenFileDialog().showDialog() catch error as DialogException: print(error.message)
| Modifier and Type | Member | Description |
|---|---|---|
| public | DialogExceptionDialogException(message as String = ""): |
Creates a dialog exception. |