13 lines
146 B
PHP
13 lines
146 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Money;
|
|
|
|
/**
|
|
* Common interface for all exceptions thrown by this library.
|
|
*/
|
|
interface Exception
|
|
{
|
|
}
|