only:better GHA error handling?

This commit is contained in:
rusefillc 2023-06-29 19:19:42 -04:00
parent 88a978ad9e
commit 132b6ec158
1 changed files with 1 additions and 1 deletions

View File

@ -185,7 +185,7 @@ public class IniFileModel {
break;
}
} catch (RuntimeException e) {
throw new IllegalStateException("While [" + rawText + "]", e);
throw new IllegalStateException("Failed to handle [" + rawText + "]: " + e, e);
}
}