php-sap/interfaces

View on GitHub
src/exceptions/ISapException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace phpsap\interfaces\exceptions;

use Throwable;

/**
 * Class ISapException
 *
 * Interface for a generic SAP exception.
 *
 * @package phpsap\interfaces\exceptions
 * @author  Gregor J.
 * @license MIT
 */
interface ISapException extends Throwable
{
}