Better error messages

This commit is contained in:
Michael Pfaff 2023-07-16 12:19:18 -04:00
parent 8658d6ab16
commit 184f0a9223
Signed by: michael
GPG Key ID: CF402C4A012AA9D4
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ public final class GeneratorProcessor extends AbstractProcessor {
first_round = false;
return true;
} catch (Exception e) {
throw new RuntimeException(e);
throw new RuntimeException("Failed to process typemap: " + typemap_classname, e);
}
}
}