master

laravel/framework

Last updated at: 29/12/2023 09:21

DecryptException.php

TLDR

This file contains the DecryptException class which extends the RuntimeException class.

Classes

DecryptException

This class represents an exception that is thrown when there is an error decrypting data. It extends the RuntimeException class.

<?php

namespace Illuminate\Contracts\Encryption;

use RuntimeException;

class DecryptException extends RuntimeException
{
    //
}