* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Domain\Employee\Exception; /** * Class AdminEmployeeException is thrown when last admin of the shop is being disabled or deleted. */ class AdminEmployeeException extends EmployeeException { /** * Code is used when the only admin of the shop is being disabled or deleted. */ public const CANNOT_CHANGE_LAST_ADMIN = 1; }