master

laravel/framework

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

EncryptException.php

TLDR

This file defines the EncryptException class, which extends the RuntimeException class and represents an exception that can occur during encryption.

Classes

EncryptException

The EncryptException class extends the RuntimeException class and represents an exception that can occur during encryption.

<?php

namespace Illuminate\Contracts\Encryption;

use RuntimeException;

class EncryptException extends RuntimeException
{
    //
}