No longer need our own token exception

This commit is contained in:
Jonny Barnes 2020-11-28 19:02:37 +00:00
parent 6942fc1d32
commit f73a5587dc
5 changed files with 17 additions and 31 deletions

View file

@ -1,13 +0,0 @@
<?php
namespace App\Exceptions;
use Exception;
class InvalidTokenException extends Exception
{
public function __construct($message, $code = 0, Exception $previous = null)
{
parent::__construct($message, $code, $previous);
}
}