Skip to content

Commit

Permalink
Exceptions: refactoring, simplified
Browse files Browse the repository at this point in the history
  • Loading branch information
f3l1x committed Dec 5, 2024
1 parent 27abf48 commit 84bf9f5
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 18 deletions.
8 changes: 8 additions & 0 deletions src/Exceptions/LogicalException.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?php declare(strict_types = 1);

namespace Nettrine\DBAL\Exceptions;

class LogicalException extends \LogicException
{

}
8 changes: 0 additions & 8 deletions src/Exceptions/Runtime/InvalidStateException.php

This file was deleted.

10 changes: 0 additions & 10 deletions src/Exceptions/Runtime/RuntimeException.php

This file was deleted.

8 changes: 8 additions & 0 deletions src/Exceptions/RuntimeException.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?php declare(strict_types = 1);

namespace Nettrine\DBAL\Exceptions;

class RuntimeException extends \RuntimeException
{

}

0 comments on commit 84bf9f5

Please sign in to comment.