Update error message

This commit is contained in:
Alex Tselegidis 2024-07-04 12:48:06 +02:00
parent 564b7dea25
commit 935156a110

View file

@ -129,7 +129,7 @@ class Accounts
->get();
if (!$query->num_rows()) {
throw new RuntimeException('The username was not found in the database: ' . $username);
throw new RuntimeException('The user was not found in the database with the provided info.');
}
$user = $query->row_array();