comparison OrthancFramework/Sources/Enumerations.h @ 5383:33410f14033b

new error code ForbiddenAccess
author Alain Mazy <am@osimis.io>
date Wed, 06 Sep 2023 15:57:11 +0200
parents 303e930fff0f
children aaf7c49a9ddc 3206537cbb56
comparison
equal deleted inserted replaced
5382:746a8a792a74 5383:33410f14033b
146 ErrorCode_DiscontinuedAbi = 40 /*!< Calling a function that has been removed from the Orthanc Framework */, 146 ErrorCode_DiscontinuedAbi = 40 /*!< Calling a function that has been removed from the Orthanc Framework */,
147 ErrorCode_BadRange = 41 /*!< Incorrect range request */, 147 ErrorCode_BadRange = 41 /*!< Incorrect range request */,
148 ErrorCode_DatabaseCannotSerialize = 42 /*!< Database could not serialize access due to concurrent update, the transaction should be retried */, 148 ErrorCode_DatabaseCannotSerialize = 42 /*!< Database could not serialize access due to concurrent update, the transaction should be retried */,
149 ErrorCode_Revision = 43 /*!< A bad revision number was provided, which might indicate conflict between multiple writers */, 149 ErrorCode_Revision = 43 /*!< A bad revision number was provided, which might indicate conflict between multiple writers */,
150 ErrorCode_MainDicomTagsMultiplyDefined = 44 /*!< A main DICOM Tag has been defined multiple times for the same resource level */, 150 ErrorCode_MainDicomTagsMultiplyDefined = 44 /*!< A main DICOM Tag has been defined multiple times for the same resource level */,
151 ErrorCode_ForbiddenAccess = 45 /*!< Access to a resource is forbidden */,
151 ErrorCode_SQLiteNotOpened = 1000 /*!< SQLite: The database is not opened */, 152 ErrorCode_SQLiteNotOpened = 1000 /*!< SQLite: The database is not opened */,
152 ErrorCode_SQLiteAlreadyOpened = 1001 /*!< SQLite: Connection is already open */, 153 ErrorCode_SQLiteAlreadyOpened = 1001 /*!< SQLite: Connection is already open */,
153 ErrorCode_SQLiteCannotOpen = 1002 /*!< SQLite: Unable to open the database */, 154 ErrorCode_SQLiteCannotOpen = 1002 /*!< SQLite: Unable to open the database */,
154 ErrorCode_SQLiteStatementAlreadyUsed = 1003 /*!< SQLite: This cached statement is already being referred to */, 155 ErrorCode_SQLiteStatementAlreadyUsed = 1003 /*!< SQLite: This cached statement is already being referred to */,
155 ErrorCode_SQLiteExecute = 1004 /*!< SQLite: Cannot execute a command */, 156 ErrorCode_SQLiteExecute = 1004 /*!< SQLite: Cannot execute a command */,