GP-1874: fix for IllegalArgumentException (invalid range)

This commit is contained in:
d-millar 2022-03-29 16:30:37 -04:00
parent 5f2d874bdd
commit aea44dd3d4

View file

@ -261,6 +261,9 @@ public class TraceObjectManager {
catch (DuplicateNameException e) {
throw new AssertionError(e); // Should be shrinking
}
catch (IllegalArgumentException e) {
Msg.warn(this, "Unable to set creation snap for " + traceThread);
}
}
}