Skip to content

Commit 5a43f69

Browse files
committed
wip
1 parent 5c29229 commit 5a43f69

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

packages/database/src/Exceptions/DatabaseException.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44

55
namespace Tempest\Database\Exceptions;
66

7-
use Exception;
8-
9-
interface DatabaseException extends Exception
7+
interface DatabaseException
108
{
119
}

packages/generation/src/Exceptions/FileGenerationFailed.php renamed to packages/generation/src/Exceptions/FileGenerationException.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44

55
namespace Tempest\Generation\Exceptions;
66

7-
use Exception;
8-
9-
abstract class FileGenerationFailed extends Exception
7+
interface FileGenerationException
108
{
119
}

packages/generation/src/Exceptions/FileGenerationWasAborted.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
namespace Tempest\Generation\Exceptions;
66

7-
final class FileGenerationWasAborted extends FileGenerationFailed
7+
use Exception;
8+
9+
final class FileGenerationWasAborted extends Exception implements FileGenerationException
810
{
911
}

0 commit comments

Comments
 (0)