1: <?php
2: /*
3: * @copyright Copyright (c) 2023, Afterlogic Corp.
4: * @license AGPL-3.0 or Afterlogic Software License
5: *
6: * This code is licensed under AGPLv3 license or Afterlogic Software License
7: * if commercial version of the product was purchased.
8: * For full statements of the licenses see LICENSE-AFTERLOGIC and LICENSE-AGPL3 files.
9: */
10:
11: namespace Aurora\Modules\MailSaveMessageAsPdfPlugin\Enums;
12:
13: class ErrorCodes
14: {
15: public const LibraryNoFound = 1;
16:
17: /**
18: * @var array
19: */
20: protected $aConsts = [
21: 'LibraryNoFound' => self::LibraryNoFound,
22: ];
23: }
24: