changed: - Signature: <pycode>stop(message="Stop", title=None, parent=None)</pycode> Description: Display a brief critical message to the user, along with the platform-specific "Stop" icon. Returns: None Comments: Similar to [dabo.ui.exclaim](), in that it presents the user with critical information, this is used for the most serious problems that will prevent the user from proceeding. The icon displayed is the platform-specific icon for an stop sign, indicating a problem that will prevent them from proceeding. Examples: <pycode>dabo.ui.stop("The connection to the database was lost!") dabo.ui.exclaim("A programming error has been encountered. Please call tech support with error code #33.", title="Program Error")</pycode>