improve OpConfig errors

This commit is contained in:
Jonathan Shook
2021-12-21 13:08:07 -06:00
parent 9c765f29a8
commit 0f77655c3e

View File

@@ -46,6 +46,10 @@ public class OpConfigError extends ActivityInitError {
sb.append(" [from:" + configSource + "] ");
}
if (getCause()!=null) {
sb.append("cause: " + getCause().getMessage());
}
// if (getCause()!=null) {
// StackTraceElement causeFrame = getCause().getStackTrace()[0];
// sb.append("\n\t caused by ")