Skip to content

Commit cbd5475

Browse files
committed
add incomplete config exception
1 parent c43862b commit cbd5475

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

src/IConfig.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ public function getDest();
8181
* Generate the type of configuration needed by the PHP module in order to
8282
* establish a connection to SAP.
8383
* @return mixed
84+
* @throws \phpsap\interfaces\exceptions\IIncompleteConfigException
8485
*/
8586
public function generateConfig();
8687
}
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?php
2+
/**
3+
* File src/exceptions/IIncompleteConfigException.php
4+
*
5+
* The configuration is incomplete.
6+
*
7+
* @package interfaces
8+
* @author Gregor J.
9+
* @license MIT
10+
*/
11+
12+
namespace phpsap\interfaces\exceptions;
13+
14+
/**
15+
* Class phpsap\interfaces\exceptions\IIncompleteConfigException
16+
*
17+
* TThe configuration is incomplete.
18+
*
19+
* @package phpsap\interfaces\exceptions
20+
* @author Gregor J.
21+
* @license MIT
22+
*/
23+
interface IIncompleteConfigException extends ISapException
24+
{
25+
}

0 commit comments

Comments
 (0)