ConfigTreeNode.py
branchsvghmi
changeset 2964 a7b11c9f468e
parent 2813 ac736a878188
child 2971 f0a822ef9fa0
equal deleted inserted replaced
2957:c0ea5015e46f 2964:a7b11c9f468e
   676         """ Raise an exception that will trigger error message intended to 
   676         """ Raise an exception that will trigger error message intended to 
   677             the user, but without backtrace since it is not a software error """
   677             the user, but without backtrace since it is not a software error """
   678 
   678 
   679         raise UserAddressedException(message)
   679         raise UserAddressedException(message)
   680 
   680 
       
   681 # Exception type for problems that user has to take action in order to fix
   681 class UserAddressedException(Exception):
   682 class UserAddressedException(Exception):
   682     pass
   683     pass
   683 
   684