Skip to content

Commit

Permalink
add missing exception
Browse files Browse the repository at this point in the history
  • Loading branch information
Baptouuuu committed Apr 17, 2022
1 parent f377df2 commit e92e920
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/Exception/Exception.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?php
declare(strict_types = 1);

namespace Innmind\IO\Exception;

interface Exception extends \Throwable
{
}
8 changes: 8 additions & 0 deletions src/Exception/RuntimeException.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?php
declare(strict_types = 1);

namespace Innmind\IO\Exception;

final class RuntimeException extends \RuntimeException implements Exception
{
}

0 comments on commit e92e920

Please sign in to comment.