Module EDMessage
[hide private]
[frames] | no frames]

Source Code for Module EDMessage

 1  # 
 2  #    Project: The EDNA Kernel 
 3  #             http://www.edna-site.org 
 4  # 
 5  #    File: "$Id$" 
 6  # 
 7  #    Copyright (C) 2008-2009 European Synchrotron Radiation Facility 
 8  #                            Grenoble, France 
 9  # 
10  #    Principal authors: Marie-Francoise Incardona (incardon@esrf.fr) 
11  #                       Olof Svensson (svensson@esrf.fr)  
12  # 
13  #    This program is free software: you can redistribute it and/or modify 
14  #    it under the terms of the GNU Lesser General Public License as published 
15  #    by the Free Software Foundation, either version 3 of the License, or 
16  #    (at your option) any later version. 
17  # 
18  #    This program is distributed in the hope that it will be useful, 
19  #    but WITHOUT ANY WARRANTY; without even the implied warranty of 
20  #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
21  #    GNU Lesser General Public License for more details. 
22  # 
23  #    You should have received a copy of the GNU General Public License 
24  #    and the GNU Lesser General Public License  along with this program.   
25  #    If not, see <http://www.gnu.org/licenses/>. 
26  # 
27   
28  __authors__ = [ "Marie-Francoise Incardona", "Olof Svensson" ] 
29  __contact__ = "svensson@esrf.fr" 
30  __license__ = "LGPLv3+" 
31  __copyright__ = "European Synchrotron Radiation Facility, Grenoble, France" 
32   
33   
34 -class EDMessage:
35 ERROR_ABSTRACT_METHOD_02 = "ERROR_ABSTRACT_METHOD: %s: Method %s should be Implemented by the Final Class" 36 ERROR_PLUGIN_NOT_LOADED_02 = "ERROR_PLUGIN_NOT_LOADED_02: %s: Could not load plugin %s." 37 ERROR_DATA_INPUT_CLASS_NOT_DEFINED_02 = "ERROR_DATA_INPUT_CLASS_NOT_DEFINED_02: %s: %s" 38 ERROR_UNEXPECTED_01 = "ERROR_UNEXPECTED_01: %s: Unexpected Error" 39 ERROR_WRONG_DATA_TYPE_02 = "ERROR_WRONG_DATA_TYPE_02: %s: Wrong type for data: %s" 40 ERROR_CANNOT_READ_FILE_02 = "ERROR_CANNOT_READ_FILE_02: %s: Cannot read file %s" 41 ERROR_EXECUTION_03 = "ERROR_EXECUTION_03: %s: Error when executing %s: %s" 42 ERROR_MANDATORY_PARAM_MISSING_02 = "ERROR_MANDATORY_PARAM_MISSING_02: %s: input parameter is missing: %s" 43 ERROR_DATA_HANDLER_02 = "ERROR_DATA_HANDLER_02: %s: %s" 44 ERROR_NO_PLUGIN_CONFIGURATION_ITEM_FOUND_02 = "ERROR_NO_PLUGIN_CONFIGURATION_ITEM_FOUND_02: %s: No Configuration item found for: %s" 45 46 INFO_OPTION_ENABLED_02 = "INFO_OPTION_ENABLED_02: %s: %s is Enabled" 47 48 WARNING_RADDOSE_CONSISTENCY_PROBLEM_02 = "WARNING_RADDOSE_CONSISTENCY_PROBLEM_02: %s: %s" 49 WARNING_NO_PLUGIN_CONFIGURATION_ITEM_FOUND_02 = "WARNING_NO_PLUGIN_CONFIGURATION_ITEM_FOUND_02: %s: No Configuration item found for: %s, taking default" 50 WARNING_NO_PARAM_CONFIGURATION_ITEM_FOUND_03 = "WARNING_NO_PARAM_CONFIGURATION_ITEM_FOUND_03: %s: No parameter configuration %s found for: %s, taking default" 51 WARNING_IMPORTANT_PARAM_MISSING_02 = "WARNING_IMPORTANT_PARAM_MISSING_02: %s: input parameter is missing: %s" 52 WARNING_CANNOT_USE_PLUGIN_03 = "WARNING_CANNOT_USE_PLUGIN_03: %s: Cannot use %s: %s"
53