comparison Core/OrthancException.cpp @ 1050:64f1842aae2e

Toolbox::ExecuteSystemCommand
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 23 Jul 2014 11:36:35 +0200
parents 0570a8c859cb
children 67c3c1e4a6e0
comparison
equal deleted inserted replaced
1049:bd2cb95003da 1050:64f1842aae2e
122 return "Incompatible format of the images"; 122 return "Incompatible format of the images";
123 123
124 case ErrorCode_SharedLibrary: 124 case ErrorCode_SharedLibrary:
125 return "Error while using a shared library (plugin)"; 125 return "Error while using a shared library (plugin)";
126 126
127 case ErrorCode_SystemCommand:
128 return "Error while calling a system command";
129
127 case ErrorCode_Custom: 130 case ErrorCode_Custom:
128 default: 131 default:
129 return "???"; 132 return "???";
130 } 133 }
131 } 134 }