sbt/interface/src/main/java/xsbti/CompileCancelled.java

10 lines
233 B
Java

package xsbti;
/**
* An exception thrown when compilation cancellation has been requested during
* Scala compiler run.
*/
public abstract class CompileCancelled extends RuntimeException {
public abstract String[] arguments();
}