mirror of
https://github.com/standardebooks/web.git
synced 2025-07-05 22:30:30 -04:00
11 lines
245 B
PHP
11 lines
245 B
PHP
<?
|
||
namespace Exceptions;
|
||
|
||
class PollVoteExistsException extends SeException{
|
||
public $Vote = null;
|
||
protected $message = 'You’ve already voted in this poll.';
|
||
|
||
public function __construct(?\PollVote $vote = null){
|
||
$this->Vote = $vote;
|
||
}
|
||
}
|