Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100755453
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
Sun, Feb 2, 11:55
Size
504 B
Mime Type
text/x-php
Expires
Tue, Feb 4, 11:55 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24019168
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