-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathException.php
80 lines (68 loc) · 1.43 KB
/
Exception.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?php
namespace Yonna\Throwable;
use Throwable;
use Yonna\Throwable\Exception\DatabaseException;
use Yonna\Throwable\Exception\DebugException;
use Yonna\Throwable\Exception\ParamsException;
use Yonna\Throwable\Exception\PermissionException;
use Yonna\Throwable\Exception\SDKException;
use Yonna\Throwable\Exception\ThrowException;
class Exception
{
/**
* @param Throwable $e
* @throws Throwable
*/
public static function origin(Throwable $e)
{
throw $e;
}
/**
* @param $msg
* @throws ThrowException
*/
public static function throw($msg)
{
throw new ThrowException($msg);
}
/**
* @param $msg
* @throws DebugException
*/
public static function debug($msg)
{
throw new DebugException($msg);
}
/**
* @param $msg
* @throws DatabaseException
*/
public static function database($msg)
{
throw new DatabaseException($msg);
}
/**
* @param $msg
* @throws ParamsException
*/
public static function params($msg)
{
throw new ParamsException($msg);
}
/**
* @param $msg
* @throws SDKException
*/
public static function sdk($msg)
{
throw new SDKException($msg);
}
/**
* @param $msg
* @throws PermissionException
*/
public static function permission($msg)
{
throw new PermissionException($msg);
}
}