TokenMismatchException.php
TLDR
This file defines the TokenMismatchException
class in the Illuminate\Session
namespace.
Class TokenMismatchException
This class extends the Exception
class and does not have any additional functionality or methods.
<?php
namespace Illuminate\Session;
use Exception;
class TokenMismatchException extends Exception
{
//
}