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