Skip to content
This repository was archived by the owner on Jan 29, 2020. It is now read-only.

Commit 866d319

Browse files
committed
Merge branch 'hotfix/234'
Close #234
2 parents 9cfa8fd + d64b08a commit 866d319

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,28 @@
22

33
All notable changes to this project will be documented in this file, in reverse chronological order by release.
44

5+
## 1.0.0rc5 - TBD
6+
7+
Fifth release candidate.
8+
9+
### Added
10+
11+
- Nothing.
12+
13+
### Deprecated
14+
15+
- Nothing.
16+
17+
### Removed
18+
19+
- Nothing.
20+
21+
### Fixed
22+
23+
- [#234](https://github.com/zendframework/zend-expressive/pull/234) fixes the
24+
inheritance tree for `Zend\Expressive\Exception\RuntimeException` to inherit
25+
from `RuntimeException` and not `InvalidArgumentException`.
26+
527
## 1.0.0rc4 - 2015-12-09
628

729
Fourth release candidate.

src/Exception/RuntimeException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
namespace Zend\Expressive\Exception;
1111

12-
class RuntimeException extends \InvalidArgumentException implements
12+
class RuntimeException extends \RuntimeException implements
1313
ExceptionInterface
1414
{
1515
}

0 commit comments

Comments
 (0)