for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Adsmurai\Currency\Errors;
use Adsmurai\Currency\Contracts\CurrencyError;
use LogicException;
final class InvalidCurrenciesDataError extends LogicException implements CurrencyError
{
public function __construct()
parent::__construct('Invalid currency types data');
}