-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexceptions.php
54 lines (50 loc) · 1.14 KB
/
exceptions.php
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
53
54
<?php
declare(strict_types=1);
namespace lucguerraz\wpmlinstaller\exceptions;
use \Exception;
/**
* Exception thrown if the WMPL user id or sub key is not available in the environment
*/
class missingkeyexception extends Exception
{
/**
* missingkeyexception constructor.
* @param string $key
* @param int $code
* @param Exception|null $previous
*/
public function __construct(
$key = '',
$code = 0,
Exception $previous = null
) {
parent::__construct(
"Could not find the {$key} env variable for WPML.",
$code,
$previous
);
}
}
/**
* Exception thrown if the WMPL user id or sub key is faulty
*/
class faultykeyexception extends Exception
{
/**
* faultykeyexception constructor.
* @param string $key
* @param int $code
* @param Exception|null $previous
*/
public function __construct(
$key = '',
$code = 0,
Exception $previous = null
) {
parent::__construct(
"The {$key} env variable is malformed.",
$code,
$previous
);
}
}