blob: e97c72a76a92f0b5aafb629d4a2de4f745ce42bc (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php
namespace PragmaRX\Google2FA\Exceptions;
use Exception;
use PragmaRX\Google2FA\Exceptions\Contracts\Google2FA as Google2FAExceptionContract;
class Google2FAException extends Exception implements Google2FAExceptionContract
{
}
|