Skip to content

Commit 633561f

Browse files
committed
add exceptions to readme
1 parent 0d0aeb1 commit 633561f

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ The following interfaces are available in namespace `phpsap\interfaces`:
1515
* `IConfigB` Configure connection parameters for SAP remote function calls using load balancing (type B).
1616
* `IConnection` Manage a PHP/SAP connection instance.
1717
* `IFunction` Manage a PHP/SAP remote function call.
18+
* `ISapException` Generic SAP exception.
19+
* `IConnectionFailedException` The SAP connection failed.
20+
* `IUnknownFunctionException` The requested remote function could not be found.
21+
* `IFunctionCallException` The SAP remote function call failed.
1822

1923
[phpsap]: https://php-sap.github.io
2024
[license-mit]: https://img.shields.io/badge/license-MIT-blue.svg

src/IUnknownFunctionException.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* File src/IUnknownFunctionException.php
44
*
5-
* The requested function could not be found.
5+
* The requested remote function could not be found.
66
*
77
* @package interfaces
88
* @author Gregor J.
@@ -14,7 +14,7 @@
1414
/**
1515
* Class phpsap\interfaces\IUnknownFunctionException
1616
*
17-
* The requested function could not be found.
17+
* The requested remote function could not be found.
1818
*
1919
* @package phpsap\interfaces
2020
* @author Gregor J.

0 commit comments

Comments
 (0)