mirror of
https://github.com/standardebooks/web.git
synced 2025-07-05 14:20:29 -04:00
6 lines
144 B
PHP
6 lines
144 B
PHP
<?
|
|
namespace Exceptions;
|
|
|
|
class PollClosedException extends AppException{
|
|
protected $message = 'This poll is not open to voting right now.';
|
|
}
|