comparison Core/OrthancException.cpp @ 304:4eea080e6e7a

refactoring
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 19 Dec 2012 14:57:18 +0100
parents 915ed24547ea
children bdd72233b105
comparison
equal deleted inserted replaced
303:c76a35a85c69 304:4eea080e6e7a
97 return "The file storage is full"; 97 return "The file storage is full";
98 98
99 case ErrorCode_InexistentItem: 99 case ErrorCode_InexistentItem:
100 return "Accessing an inexistent item"; 100 return "Accessing an inexistent item";
101 101
102 case ErrorCode_BadRequest:
103 return "Bad request";
104
102 case ErrorCode_Custom: 105 case ErrorCode_Custom:
103 default: 106 default:
104 return "???"; 107 return "???";
105 } 108 }
106 } 109 }