Skip to content

Commit 0725de2

Browse files
committed
feat: add exception class
1 parent edffaf9 commit 0725de2

2 files changed

Lines changed: 36 additions & 0 deletions

File tree

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?php
2+
3+
/**
4+
*
5+
* NotFoundException class
6+
*
7+
* @copyright Apereo
8+
* @category Exception
9+
* @package OpenLRW
10+
* @author Xavier Chopin <bonjour@xavierchop.in>
11+
* @license http://www.osedu.org/licenses/ECL-2.0 ECL-2.0 License
12+
*/
13+
14+
namespace OpenLRW\Exception;
15+
16+
final class BadRequestException extends \RuntimeException implements Exception
17+
{
18+
}
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?php
2+
3+
/**
4+
*
5+
* NotFoundException class
6+
*
7+
* @copyright Apereo
8+
* @category Exception
9+
* @package OpenLRW
10+
* @author Xavier Chopin <bonjour@xavierchop.in>
11+
* @license http://www.osedu.org/licenses/ECL-2.0 ECL-2.0 License
12+
*/
13+
14+
namespace OpenLRW\Exception;
15+
16+
final class InternalServerErrorException extends \RuntimeException implements Exception
17+
{
18+
}

0 commit comments

Comments
 (0)