Package org.jitterbit.integration.data.test

Examples of org.jitterbit.integration.data.test.TestResultStringError


        private void addErrorToHistory(Object o) {
            TestResultError error = null;
            if (o instanceof Throwable) {
                error = new TestResultException((Throwable) o);
            } else if (o != null) {
                error = new TestResultStringError(o.toString());
            } else {
                error = new TestResultStringError("An unknown error occurred.");
            }
            history.add(LoadSourceResult.error(tx, error));
        }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.data.test.TestResultStringError

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.