Skip to content

Commit

Permalink
fix: remove redundant throwable implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
fyrts committed Mar 6, 2023
1 parent 0058224 commit 715585a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Exception/ApiException.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@

namespace Setle\Exception;

class ApiException extends \Exception implements \Throwable
class ApiException extends \Exception
{
}
2 changes: 1 addition & 1 deletion src/Exception/AuthException.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@

namespace Setle\Exception;

class AuthException extends \Exception implements \Throwable
class AuthException extends \Exception
{
}
2 changes: 1 addition & 1 deletion src/Exception/FailedJsonEncodingException.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@

namespace Setle\Exception;

class FailedJsonEncodingException extends \Exception implements \Throwable
class FailedJsonEncodingException extends \Exception
{
}
2 changes: 1 addition & 1 deletion src/Exception/InvalidPropertyException.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@

namespace Setle\Exception;

class InvalidPropertyException extends \Exception implements \Throwable
class InvalidPropertyException extends \Exception
{
}
2 changes: 1 addition & 1 deletion src/Exception/NotFoundException.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@

namespace Setle\Exception;

class NotFoundException extends \Exception implements \Throwable
class NotFoundException extends \Exception
{
}

0 comments on commit 715585a

Please sign in to comment.