comparison Core/OrthancException.cpp @ 1248:db753e57934f

ErrorCode_Database
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 09 Dec 2014 12:17:59 +0100
parents 67c3c1e4a6e0
children 6e7e5ed91c2d
comparison
equal deleted inserted replaced
1247:32fcc5dc7562 1248:db753e57934f
128 return "Error while calling a system command"; 128 return "Error while calling a system command";
129 129
130 case ErrorCode_Plugin: 130 case ErrorCode_Plugin:
131 return "Error encountered inside a plugin"; 131 return "Error encountered inside a plugin";
132 132
133 case ErrorCode_Database:
134 return "Error with the database engine";
135
133 case ErrorCode_Custom: 136 case ErrorCode_Custom:
134 default: 137 default:
135 return "???"; 138 return "???";
136 } 139 }
137 } 140 }