toby/app/Domain/Slack/Exceptions/UserNotFoundException.php
Adrian Hopek 160eb5f94b fix
2022-04-25 13:36:40 +02:00

12 lines
205 B
PHP

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