fix AuthException parameters

This commit is contained in:
Weiko
2025-01-09 18:29:09 +01:00
parent f44d99d2ff
commit 4ed1db3845

View File

@ -124,7 +124,7 @@ export class GoogleAuthController {
}),
);
}
throw new AuthException(AuthExceptionCode.INTERNAL_SERVER_ERROR, err);
throw new AuthException(err, AuthExceptionCode.INTERNAL_SERVER_ERROR);
}
}
}