comparison OrthancStone/Sources/StoneException.h @ 1640:52b8b96cb55f

cleaning namespaces
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 10 Nov 2020 16:55:22 +0100
parents 8563ea5d8ae4
children 9ac2a65d4172
comparison
equal deleted inserted replaced
1639:5cdc5b98f14d 1640:52b8b96cb55f
48 48
49 49
50 class StoneException 50 class StoneException
51 { 51 {
52 protected: 52 protected:
53 OrthancStone::ErrorCode errorCode_; 53 ErrorCode errorCode_;
54 54
55 public: 55 public:
56 explicit StoneException(ErrorCode errorCode) : 56 explicit StoneException(ErrorCode errorCode) :
57 errorCode_(errorCode) 57 errorCode_(errorCode)
58 { 58 {