mirror of
https://github.com/standardebooks/web.git
synced 2025-07-05 06:10:36 -04:00
7 lines
155 B
PHP
7 lines
155 B
PHP
<?
|
|
namespace Exceptions;
|
|
|
|
class VcsUrlRequiredException extends AppException{
|
|
/** @var string $message */
|
|
protected $message = 'VCS URL is required.';
|
|
}
|