forked from craftcms/cms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInvalidSubpathException.php
More file actions
52 lines (45 loc) · 1.19 KB
/
Copy pathInvalidSubpathException.php
File metadata and controls
52 lines (45 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
/**
* @link https://craftcms.com/
* @copyright Copyright (c) Pixel & Tonic, Inc.
* @license https://craftcms.github.io/license/
*/
namespace craft\errors;
use Throwable;
use yii\base\Exception;
/**
* Class InvalidSubpathException
*
* @author Pixel & Tonic, Inc. <support@pixelandtonic.com>
* @since 3.0.0
*/
class InvalidSubpathException extends Exception
{
/**
* @var string The invalid subpath
*/
public string $subpath;
/**
* Constructor.
*
* @param string $subpath The invalid subpath
* @param string|null $message The error message
* @param int $code The error code
* @param Throwable|null $previous The previous exception
*/
public function __construct(string $subpath, ?string $message = null, int $code = 0, ?Throwable $previous = null)
{
$this->subpath = $subpath;
if ($message === null) {
$message = "Could not resolve the subpath “{$subpath}”.";
}
parent::__construct($message, $code, $previous);
}
/**
* @return string the user-friendly name of this exception
*/
public function getName(): string
{
return 'Invalid subpath';
}
}