Package org.jitterbit.application.errorlog

Examples of org.jitterbit.application.errorlog.ErrorLogEntry


*/
abstract class AbstractLastErrorExecutor implements CommandExecutor {

    @Override
    public final void execute(String[] params) throws CommandException {
        ErrorLogEntry entry = ErrorLog.lastError();
        if (entry != null) {
            handle(entry);
        } else {
            NonBlockingAlert.info("No errors have been reported.", "No errors");
        }
View Full Code Here

TOP

Related Classes of org.jitterbit.application.errorlog.ErrorLogEntry

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.