comparison Core/OrthancException.cpp @ 885:0570a8c859cb plugins

SharedLibrary class
author Sebastien Jodogne <s.jodogne@gmail.com>
date Sat, 14 Jun 2014 16:53:28 +0200
parents 839be3022203
children 64f1842aae2e
comparison
equal deleted inserted replaced
884:cd8a69aa4093 885:0570a8c859cb
119 return "Incompatible size of the images"; 119 return "Incompatible size of the images";
120 120
121 case ErrorCode_IncompatibleImageFormat: 121 case ErrorCode_IncompatibleImageFormat:
122 return "Incompatible format of the images"; 122 return "Incompatible format of the images";
123 123
124 case ErrorCode_SharedLibrary:
125 return "Error while using a shared library (plugin)";
126
124 case ErrorCode_Custom: 127 case ErrorCode_Custom:
125 default: 128 default:
126 return "???"; 129 return "???";
127 } 130 }
128 } 131 }