mirror of
https://github.com/standardebooks/web.git
synced 2025-07-06 06:40:33 -04:00
7 lines
168 B
PHP
7 lines
168 B
PHP
<?
|
||
namespace Exceptions;
|
||
|
||
class PollVoteNotFoundException extends AppException{
|
||
/** @var string $message */
|
||
protected $message = 'We couldn’t locate that vote.';
|
||
}
|