php-sap/interfaces

View on GitHub
src/exceptions/IArrayElementMissingException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace phpsap\interfaces\exceptions;

/**
 * Interface IArrayElementMissingException
 *
 * A table/struct element required by the API is not in the table/struct.
 *
 * @package phpsap\interfaces\exceptions
 * @author  Gregor J.
 * @license MIT
 */
interface IArrayElementMissingException extends ISapException
{
}