use CleaniqueCoders\LaravelSingleSession\Exceptions\SingleSessionException;
...
public function render($request, Exception $exception)
{
if ($exception instanceof SingleSessionException) {
return response()->view('single-session::errors.single-session', [], 401);
}
...