repo.or.cz
/
phpt.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add @todo note
[phpt.git]
/
src
/
PHPT
/
Case
/
FailureException.php
blob
c1a7c6381e9902ddf7dd7946d393a3006ed17bc1
1
<
?php
2
3
class
PHPT_Case_FailureException
extends
Exception
4
{
5
public function
__construct
(
PHPT_Case
$case
,
$reason
)
6
{
7
parent
::
__construct
(
$reason
);
8
}
9
10
public function
getReason
()
11
{
12
return
$this
->
getMessage
();
13
}
14
}