-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathInvalidKeyException.php
38 lines (38 loc) · 1.28 KB
/
InvalidKeyException.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
<?php
class InvalidKeyException extends Exception {
private function __init() { // default class members
}
public static function __staticinit() { // static class members
}
public static function constructor__ ()
{
$me = new self();
$me->__init();
return $me;
}
public static function constructor__943a4c31 ($detailMessage) // [String detailMessage]
{
$me = new self();
$me->__init();
/* constructor resolution using types matched overloadcode: */
parent::constructor__($detailMessage);
return $me;
}
public static function constructor__2c997920 ($throwable) // [Throwable throwable]
{
$me = new self();
$me->__init();
/* constructor resolution using types matched overloadcode: */
parent::constructor__($throwable);
return $me;
}
public static function constructor__4c6bf692 ($detailMessage, $throwable) // [String detailMessage, Throwable throwable]
{
$me = new self();
$me->__init();
/* constructor resolution using types matched overloadcode: */
parent::constructor__($detailMessage, $throwable);
return $me;
}
}
InvalidKeyException::__staticinit(); // initialize static vars for this class on load