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