toby/app/Infrastructure/Slack/Exceptions/UserNotFoundException.php
2022-04-26 12:46:18 +02:00

12 lines
213 B
PHP

<?php
declare(strict_types=1);
namespace Toby\Infrastructure\Slack\Exceptions;
use Spatie\SlashCommand\Exceptions\SlackSlashCommandException;
class UserNotFoundException extends SlackSlashCommandException
{
}