comparison Framework/StoneException.h @ 1057:5df50e0f0390

removing unused class IPromise
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 11 Oct 2019 13:37:21 +0200
parents 348866dd217c
children 6dd90b8d1589
comparison
equal deleted inserted replaced
1055:af456106576c 1057:5df50e0f0390
33 { 33 {
34 ErrorCode_Success, 34 ErrorCode_Success,
35 ErrorCode_OrthancError, // this StoneException is actually an OrthancException with an Orthanc error code 35 ErrorCode_OrthancError, // this StoneException is actually an OrthancException with an Orthanc error code
36 ErrorCode_ApplicationException, // this StoneException is specific to an application (and should have its own internal error code) 36 ErrorCode_ApplicationException, // this StoneException is specific to an application (and should have its own internal error code)
37 ErrorCode_NotImplemented, // case not implemented 37 ErrorCode_NotImplemented, // case not implemented
38
39 ErrorCode_PromiseSingleSuccessHandler, // a Promise can only have a single success handler
40 ErrorCode_PromiseSingleFailureHandler, // a Promise can only have a single failure handler
41 38
42 ErrorCode_CanOnlyAddOneLayerAtATime, 39 ErrorCode_CanOnlyAddOneLayerAtATime,
43 ErrorCode_CommandJsonInvalidFormat, 40 ErrorCode_CommandJsonInvalidFormat,
44 ErrorCode_WebGLContextLost, 41 ErrorCode_WebGLContextLost,
45 ErrorCode_Last 42 ErrorCode_Last