-
- // Operating system identifier
- // Either "WIN" or empty string
- defined('TYPO3_OS') ?: define('TYPO3_OS', self::getTypo3Os());
-
- // Service error constants
- // @deprecated since TYPO3 v9.3, will be removed in TYPO3 v10.0, use the class constants in AbstractService instead.
- // General error - something went wrong
- define('T3_ERR_SV_GENERAL', -1);
- // During execution it showed that the service is not available and should be ignored. The service itself should call $this->setNonAvailable()
- define('T3_ERR_SV_NOT_AVAIL', -2);
- // Passed subtype is not possible with this service
- define('T3_ERR_SV_WRONG_SUBTYPE', -3);
- // Passed subtype is not possible with this service
- define('T3_ERR_SV_NO_INPUT', -4);
- // File not found which the service should process
- define('T3_ERR_SV_FILE_NOT_FOUND', -20);
- // File not readable
- define('T3_ERR_SV_FILE_READ', -21);
- // File not writable
- define('T3_ERR_SV_FILE_WRITE', -22);
- // Passed subtype is not possible with this service
- define('T3_ERR_SV_PROG_NOT_FOUND', -40);
- // Passed subtype is not possible with this service
- define('T3_ERR_SV_PROG_FAILED', -41);