mirror of
https://github.com/standardebooks/web.git
synced 2025-07-05 14:20:29 -04:00
12 lines
286 B
PHP
12 lines
286 B
PHP
<?
|
||
namespace Exceptions;
|
||
|
||
class PollVoteExistsException extends AppException{
|
||
public ?\PollVote $Vote = null;
|
||
/** @var string $message */
|
||
protected $message = 'You’ve already voted in this poll.';
|
||
|
||
public function __construct(?\PollVote $vote = null){
|
||
$this->Vote = $vote;
|
||
}
|
||
}
|