All Downloads are FREE. Search and download functionalities are using the official Maven repository.

xsbt.InterfaceCompileFailed Maven / Gradle / Ivy

There is a newer version: 0.28.0-bin-20201014-ca67e4d-NIGHTLY
Show newest version
/* sbt -- Simple Build Tool
 * Copyright 2008, 2009 Mark Harrah
 */
package xsbt;

import xsbti.Problem;

public class InterfaceCompileFailed extends xsbti.CompileFailed {
  private final String[] _arguments;
  private final Problem[] _problems;

  public InterfaceCompileFailed(String[] arguments, Problem[] problems) {
    super();
    this._arguments = arguments;
    this._problems = problems;
  }

  public String[] arguments() {
    return _arguments;
  }

  public Problem[] problems() {
    return _problems;
  }

  @Override
  public String toString() {
    return "Compilation failed";
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy