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
{
//
}