FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
sentry-php/src/ExceptionMechanism.php at source-frame-cache · getsentry/sentry-php · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
getsentry
/
sentry-php
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
475
Star
1.9k
Code
Issues
20
Pull requests
11
Discussions
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
sentry-php
/
src
/
ExceptionMechanism.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
92 lines (80 loc) · 2.59 KB
Breadcrumbs
sentry-php
/
src
/
ExceptionMechanism.php
Copy path
File metadata and controls
92 lines (80 loc) · 2.59 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
81
82
83
84
85
86
87
88
89
90
91
92
<?php
declare
(strict_types=
1
);
namespace
Sentry
;
/**
* The exception mechanism is an optional field residing in the Exception Interface.
* It carries additional information about the way the exception was created on the
* target system. This includes general exception values obtained from operating
* system or runtime APIs, as well as mechanism-specific values.
*/
final
class
ExceptionMechanism
{
public
const
TYPE_GENERIC
=
'
generic
'
;
/**
* @var string Unique identifier of this mechanism determining rendering and
* processing of the mechanism data
*/
private
$
type
;
/**
* @var bool Flag indicating whether the exception has been handled by the
* user (e.g. via try..catch)
*/
private
$
handled
;
/**
* @var array<string, mixed> Arbitrary extra data that might help the user
* understand the error thrown by this mechanism
*/
private
$
data
;
/**
* Class constructor.
*
* @param string $type Unique identifier of this mechanism determining
* rendering and processing of the mechanism data
* @param bool $handled Flag indicating whether the exception has been
* handled by the user (e.g. via try..catch)
* @param array<string, mixed> $data Arbitrary extra data that might help the user
* understand the error thrown by this mechanism
*/
public
function
__construct
(
string
$
type
,
bool
$
handled
,
array
$
data
= [])
{
$
this
->
type
=
$
type
;
$
this
->
handled
=
$
handled
;
$
this
->
data
=
$
data
;
}
/**
* Returns the unique identifier of this mechanism determining rendering and
* processing of the mechanism data.
*/
public
function
getType
():
string
{
return
$
this
->
type
;
}
/**
* Returns the flag indicating whether the exception has been handled by the
* user (e.g. via try..catch).
*/
public
function
isHandled
():
bool
{
return
$
this
->
handled
;
}
/**
* Returns arbitrary extra data that might help the user understand the error
* thrown by this mechanism.
*
* @return array<string, mixed>
*/
public
function
getData
():
array
{
return
$
this
->
data
;
}
/**
* Sets the arbitrary extra data.
*
* @param array<string, mixed> $data
*/
public
function
setData
(
array
$
data
):
self
{
$
this
->
data
=
$
data
;
return
$
this
;
}
}
Back
|
FazBrowse Home
|
New Git URL