Skip to content

Commit 57726a1

Browse files
committed
feat(exceptions): add QueryException for failed NFS-e queries
Signed-off-by: Vitor Mattos <vitor@php.rio>
1 parent 45d7a6a commit 57726a1

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

src/Exception/QueryException.php

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?php
2+
3+
// SPDX-FileCopyrightText: 2026 LibreCode coop and contributors
4+
// SPDX-License-Identifier: AGPL-3.0-or-later
5+
6+
declare(strict_types=1);
7+
8+
namespace LibreCodeCoop\NfsePHP\Exception;
9+
10+
/**
11+
* Thrown when the SEFIN gateway returns an error for an NFS-e query request.
12+
*/
13+
class QueryException extends GatewayException
14+
{
15+
}

0 commit comments

Comments
 (0)