Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96114434
Error.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Dec 22, 18:24
Size
512 B
Mime Type
text/x-php
Expires
Tue, Dec 24, 18:24 (1 d, 18 h)
Engine
blob
Format
Raw Data
Handle
23113484
Attached To
rPH Phabricator
Error.php
View Options
<?php
class
Stripe_Error
extends
Exception
{
public
function
__construct
(
$message
=
null
,
$http_status
=
null
,
$http_body
=
null
,
$json_body
=
null
)
{
parent
::
__construct
(
$message
);
$this
->
http_status
=
$http_status
;
$this
->
http_body
=
$http_body
;
$this
->
json_body
=
$json_body
;
}
public
function
getHttpStatus
()
{
return
$this
->
http_status
;
}
public
function
getHttpBody
()
{
return
$this
->
http_body
;
}
public
function
getJsonBody
()
{
return
$this
->
json_body
;
}
}
Event Timeline
Log In to Comment