comparison Core/OrthancException.cpp @ 268:4bc02e2254ec

preparing ServerIndex for recycling
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 07 Dec 2012 13:43:35 +0100
parents bd009f0b1931
children 915ed24547ea
comparison
equal deleted inserted replaced
266:a08dca15790e 268:4bc02e2254ec
91 return "Bad sequence of calls"; 91 return "Bad sequence of calls";
92 92
93 case ErrorCode_IncompatibleDatabaseVersion: 93 case ErrorCode_IncompatibleDatabaseVersion:
94 return "Incompatible version of the database"; 94 return "Incompatible version of the database";
95 95
96 case ErrorCode_FullStorage:
97 return "The file storage is full";
98
96 case ErrorCode_Custom: 99 case ErrorCode_Custom:
97 default: 100 default:
98 return "???"; 101 return "???";
99 } 102 }
100 } 103 }