Feature #11012
openpop up warning windows
0%
Description
i would like to pop-up warning window msg to the user.
what is existing, is only error message windows
has example :
msg = " be sure to uses the... "
raise InvalidValueError(msg)
only error existing in error.py
class InvalidDataError(Exception):
"""The radio driver encountered some invalid data"""
pass
class InvalidValueError(Exception):
"""An invalid value for a given parameter was used"""
pass
class InvalidMemoryLocation(Exception):
"""The requested memory location does not exist"""
pass
class RadioError(Exception):
"""An error occurred while talking to the radio"""
pass
class UnsupportedToneError(Exception):
"""The radio does not support the specified tone value"""
pass
class ImageDetectFailed(Exception):
"""The driver for the supplied image could not be determined"""
pass
class ImageMetadataInvalidModel(Exception):
"""The image contains metadata but no suitable driver is found"""
pass
No data to display