Skip to content

Commit

Permalink
moved exceptions to Requests
Browse files Browse the repository at this point in the history
  • Loading branch information
derpoho committed Feb 20, 2024
1 parent e86f53f commit a425b4b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Probots\Pinecone\Exceptions;
namespace Probots\Pinecone\Requests\Exceptions;

use Saloon\Exceptions\SaloonException;

Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/Index/ConfigureTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

use Probots\Pinecone\Exceptions\MissingNameException;
use Probots\Pinecone\Requests\Exceptions\MissingNameException;

it('can do anything', function () {

Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/Index/DeleteTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

use Probots\Pinecone\Exceptions\MissingNameException;
use Probots\Pinecone\Requests\Exceptions\MissingNameException;

it('can delete an index', function () {

Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/Index/DescribeTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

use Probots\Pinecone\Exceptions\MissingNameException;
use Probots\Pinecone\Requests\Exceptions\MissingNameException;

it('can describe an index', function () {

Expand Down

0 comments on commit a425b4b

Please sign in to comment.