Examples of RunStatsException


Examples of uk.ac.bbsrc.tgac.miso.runstats.client.RunStatsException

  public List<String> listPerBaseSummaryAnalyses() throws RunStatsException {
    try {
      return reports.listPerBaseSummaryAnalyses();
    }
    catch (SQLException e) {
      throw new RunStatsException("Cannot retrieve the list of per-base summary analyses: " + e.getMessage());
    }
  }
View Full Code Here

Examples of uk.ac.bbsrc.tgac.miso.runstats.client.RunStatsException

  public List<String> listGlobalRunAnalyses() throws RunStatsException {
    try {
      return reports.listGlobalAnalyses();
    }
    catch (SQLException e) {
      throw new RunStatsException("Cannot retrieve the list of global run-based analyses: " + e.getMessage());
    }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.