This commit is contained in:
Tibo De Peuter 2025-05-14 14:59:46 +02:00
commit 5893933d4b
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2
32 changed files with 1155 additions and 6559 deletions

View file

@ -43,7 +43,7 @@ export async function fetchStudent(username: string): Promise<Student> {
const user = await studentRepository.findByUsername(username);
if (!user) {
throw new NotFoundException('Student with username not found');
throw new NotFoundException(`Student with username ${username} not found`);
}
return user;