comparison Core/OrthancException.cpp @ 282:915ed24547ea

cache lru policy
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 12 Dec 2012 13:17:42 +0100
parents 4bc02e2254ec
children 4eea080e6e7a
comparison
equal deleted inserted replaced
280:77e526e6fdf8 282:915ed24547ea
94 return "Incompatible version of the database"; 94 return "Incompatible version of the database";
95 95
96 case ErrorCode_FullStorage: 96 case ErrorCode_FullStorage:
97 return "The file storage is full"; 97 return "The file storage is full";
98 98
99 case ErrorCode_InexistentItem:
100 return "Accessing an inexistent item";
101
99 case ErrorCode_Custom: 102 case ErrorCode_Custom:
100 default: 103 default:
101 return "???"; 104 return "???";
102 } 105 }
103 } 106 }