mirror of https://github.com/sbt/sbt.git
10 lines
233 B
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();
|
||
|
|
}
|