Merge remote-tracking branch 'cancel-bug' into 0.13

This commit is contained in:
Mark Harrah 2013-07-19 18:56:01 -04:00
commit f6141d2862
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
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();
}