web/lib/Exceptions/PollClosedException.php
2024-05-10 23:38:57 -05:00

7 lines
173 B
PHP

<?
namespace Exceptions;
class PollClosedException extends AppException{
/** @var string $message */
protected $message = 'This poll is not open to voting right now.';
}