135136137138139140141
* @return serializable exception */ private TestContainerException createTestContainerException(String message, Throwable ex) { return isSerializable(ex) ? new TestContainerException(message, ex) : new WrappedTestContainerException(message, ex); }