for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Equip\Auth\Exception;
/**
* Exception that occurs when a user specifies an authentication token that is
* invalid.
*/
class InvalidException extends AuthException
{
public function __construct(
$message = 'The token being used is invalid',
$code = 403,
\Exception $previous = null
) {
parent::__construct($message, $code, $previous);
}