comparison Core/Enumerations.cpp @ 1630:ffd23c0104af

"/system" URI gives information about the plugins used for storage area and DB back-end
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 21 Sep 2015 13:26:45 +0200
parents 2dff2bdffdb8
children 87c77b9b3679
comparison
equal deleted inserted replaced
1629:bad4772b605c 1630:ffd23c0104af
296 return "The Lua function is not a predicate (only true/false outputs allowed)"; 296 return "The Lua function is not a predicate (only true/false outputs allowed)";
297 297
298 case ErrorCode_LuaReturnsNoString: 298 case ErrorCode_LuaReturnsNoString:
299 return "The Lua function does not return a string"; 299 return "The Lua function does not return a string";
300 300
301 case ErrorCode_StorageAreaAlreadyRegistered:
302 return "Another plugin has already registered a custom storage area";
303
304 case ErrorCode_DatabaseBackendAlreadyRegistered:
305 return "Another plugin has already registered a custom database back-end";
306
307 case ErrorCode_DatabasePlugin:
308 return "The plugin implementing a custom database back-end does not fulfill the proper interface";
309
301 default: 310 default:
302 return "Unknown error code"; 311 return "Unknown error code";
303 } 312 }
304 } 313 }
305 314