class TwoFactorAuthenticationExceptions extends \Exception {
6
7
/**
8
* Column Not Found
9
*
10
*/
11
public static function columnNotFound()
12
{
13
$table = config('2fa-config.table');
14
return new static("Could not locate required column `two_factor_secret_key` or `is_two_factor_enabled` in `$table` table. Make sure the migrations ran properly.");