Package org.dtk.analysis.exceptions

Examples of org.dtk.analysis.exceptions.FatalAnalysisError


   * @throws FataAnalysisError - Exception details for fatal analysis issue
   */
  @Override
  public Map<String, List<String>> getModules() throws FatalAnalysisError {
    if (ParsePhase.ERROR.equals(parsePhase)) {
      throw new FatalAnalysisError();
    }
    return discoveredModules;
  }
View Full Code Here

TOP

Related Classes of org.dtk.analysis.exceptions.FatalAnalysisError

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.