Package com.isencia.passerelle.ext

Examples of com.isencia.passerelle.ext.ErrorCollector


  }

  public void reportError(PasserelleException e) {
      if (!errorCollectors.isEmpty()) {
        for (Iterator<ErrorCollector> errCollItr = errorCollectors.iterator(); errCollItr.hasNext();) {
          ErrorCollector element = errCollItr.next();
          element.acceptError(e);
        }
      } else {
        LOGGER.error("reportError() - no errorCollectors but received exception", e);
      }
    }
View Full Code Here

TOP

Related Classes of com.isencia.passerelle.ext.ErrorCollector

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.