Salome HOME
Copyright update 2021
[modules/kernel.git] / src / KERNEL_PY / kernel / uiexception.py
index bb1928e49945453f648ea72bd41e0a3c4d26f008..702b15863aa799594d8d1a086601a8dbb97fcdb6 100644 (file)
@@ -1,5 +1,5 @@
 # -*- coding: iso-8859-1 -*-
-# Copyright (C) 2010-2016  CEA/DEN, EDF R&D, OPEN CASCADE
+# Copyright (C) 2010-2021  CEA/DEN, EDF R&D, OPEN CASCADE
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Lesser General Public
@@ -66,9 +66,9 @@ class UiException(Exception):
     def getUIMessage(self):
         return self._UImessage
 
-    ## Specify the type of this exception. To be choosen in the TYPES list.
+    ## Specify the type of this exception. To be chosen in the TYPES list.
     def setType(self, type):
-        """Specify the type of this exception. To be choosen in the TYPES list."""
+        """Specify the type of this exception. To be chosen in the TYPES list."""
         if not self.TYPES.isValid(type):
             raise UiException("The exception type "+str(type)+" can't be used",self.TYPES.DEVEL)
         self._type = type