comparison Core/Enumerations.cpp @ 1581:357c4bb15701

Plugins have access to explicit error codes
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 25 Aug 2015 16:18:37 +0200
parents b93c398f934d
children bd1889029cbb
comparison
equal deleted inserted replaced
1580:bf502300c52e 1581:357c4bb15701
128 return "Incompatible size of the images"; 128 return "Incompatible size of the images";
129 129
130 case ErrorCode_SharedLibrary: 130 case ErrorCode_SharedLibrary:
131 return "Error while using a shared library (plugin)"; 131 return "Error while using a shared library (plugin)";
132 132
133 case ErrorCode_UnknownPluginService:
134 return "Plugin invoking an unknown service";
135
133 default: 136 default:
134 return "Unknown error code"; 137 return "Unknown error code";
135 } 138 }
136 } 139 }
137 140