mmeyer2k/dcrypt

View on GitHub
src/Exceptions/InvalidChecksumException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace Dcrypt\Exceptions;

use Exception;

class InvalidChecksumException extends Exception
{
    protected $message = 'Invalid ciphertext checksum';
}