stymiee/php-simple-encryption

View on GitHub
src/Encryption/Exceptions/EncryptionException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace Encryption\Exceptions;

use Exception;

/**
 * Class EncryptionException
 * @package Encryption\Exceptions
 */
class EncryptionException extends Exception
{
}