Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F122225122
PhabricatorAuthPasswordException.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, Jul 16, 19:03
Size
504 B
Mime Type
text/x-php
Expires
Fri, Jul 18, 19:03 (2 d)
Engine
blob
Format
Raw Data
Handle
27453212
Attached To
rPH Phabricator
PhabricatorAuthPasswordException.php
View Options
<?php
final
class
PhabricatorAuthPasswordException
extends
Exception
{
private
$passwordError
;
private
$confirmErorr
;
public
function
__construct
(
$message
,
$password_error
,
$confirm_error
=
null
)
{
$this
->
passwordError
=
$password_error
;
$this
->
confirmError
=
$confirm_error
;
parent
::
__construct
(
$message
);
}
public
function
getPasswordError
()
{
return
$this
->
passwordError
;
}
public
function
getConfirmError
()
{
return
$this
->
confirmError
;
}
}
Event Timeline
Log In to Comment