mmeyer2k/dcrypt

View on GitHub
src/Exceptions/InvalidKeyEncodingException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace Dcrypt\Exceptions;

use Exception;

class InvalidKeyEncodingException extends Exception
{
    protected $message = 'Key must be base64 encoded';
}