Skip to content

Commit 84bf9f5

Browse files
committed
Exceptions: refactoring, simplified
1 parent 27abf48 commit 84bf9f5

File tree

4 files changed

+16
-18
lines changed

4 files changed

+16
-18
lines changed

src/Exceptions/LogicalException.php

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php declare(strict_types = 1);
2+
3+
namespace Nettrine\DBAL\Exceptions;
4+
5+
class LogicalException extends \LogicException
6+
{
7+
8+
}

src/Exceptions/Runtime/InvalidStateException.php

-8
This file was deleted.

src/Exceptions/Runtime/RuntimeException.php

-10
This file was deleted.

src/Exceptions/RuntimeException.php

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php declare(strict_types = 1);
2+
3+
namespace Nettrine\DBAL\Exceptions;
4+
5+
class RuntimeException extends \RuntimeException
6+
{
7+
8+
}

0 commit comments

Comments
 (0)