<?php
namespace Pterodactyl\Exceptions\Service\Backup;
use Pterodactyl\Exceptions\DisplayException;
class BackupLockedException extends DisplayException
{
public function __construct()
{
parent::__construct('Cannot delete a backup that is marked as locked.');
}
}