Skip to content

Commit c54be0d

Browse files
committed
feature #1 Add an exception for unsupported statement version (Lctrs)
This PR was squashed before being merged into the 0.1.x-dev branch (closes #1). Discussion ---------- Add an exception for unsupported statement version Replace php-xapi/serializer#37 Commits ------- e43c0ac Add an exception for unsupported statement version
2 parents 721fca8 + e43c0ac commit c54be0d

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
CHANGELOG
22
=========
33

4+
0.2.0
5+
-----
6+
7+
* Added `UnsupportedStatementVersionException`.
8+
49
0.1.1
510
-----
611

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?php
2+
3+
/*
4+
* This file is part of the xAPI package.
5+
*
6+
* (c) Christian Flothmann <[email protected]>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
namespace Xabbuh\XApi\Common\Exception;
13+
14+
/**
15+
* Unsupported statement version exception.
16+
*
17+
* @author Jérôme Parmentier <[email protected]>
18+
*/
19+
class UnsupportedStatementVersionException extends XApiException
20+
{
21+
}

0 commit comments

Comments
 (0)