Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92433548
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
Wed, Nov 20, 06:30
Size
504 B
Mime Type
text/x-php
Expires
Fri, Nov 22, 06:30 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22432452
Attached To
rPH Phabricator
Error.php
View Options
<?php
class
Stripe_Error
extends
Exception
{
public
function
__construct
(
$message
,
$httpStatus
=
null
,
$httpBody
=
null
,
$jsonBody
=
null
)
{
parent
::
__construct
(
$message
);
$this
->
httpStatus
=
$httpStatus
;
$this
->
httpBody
=
$httpBody
;
$this
->
jsonBody
=
$jsonBody
;
}
public
function
getHttpStatus
()
{
return
$this
->
httpStatus
;
}
public
function
getHttpBody
()
{
return
$this
->
httpBody
;
}
public
function
getJsonBody
()
{
return
$this
->
jsonBody
;
}
}
Event Timeline
Log In to Comment