[tuxdroid-svn] r5988 - software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/execut
Status: Beta
Brought to you by:
ks156
From: jerome <c2m...@c2...> - 2009-12-16 10:25:55
|
Author: jerome Date: 2009-12-16 11:25:43 +0100 (Wed, 16 Dec 2009) New Revision: 5988 Modified: software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/errors.py Log: * Applied new comments guideline. Modified: software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/errors.py =================================================================== --- software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/errors.py 2009-12-16 10:20:53 UTC (rev 5987) +++ software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/errors.py 2009-12-16 10:25:43 UTC (rev 5988) @@ -19,25 +19,29 @@ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. *''' - + +# ============================================================================== +# Declaration of the "EquipmentException" error class. +# ============================================================================== class EquipmentException(Exception): + '''Handle Skype call equipment error. ''' - Handle Skype call equipment error. - ''' pass - +# ============================================================================== +# Declaration of the "UnavailableContactException" error class. +# ============================================================================== class UnavailableContactException(Exception): + '''Handle unavailable contact error. ''' - Handle unavailable contact error. - ''' pass - +# ============================================================================== +# Declaration of the "UserNotFindException" error class. +# ============================================================================== class UserNotFindException(Exception): + '''Handle 'not find' contact. ''' - Handle 'not find' contact. - ''' pass \ No newline at end of file |