mirror of https://github.com/sbt/sbt.git
11 lines
235 B
Java
11 lines
235 B
Java
|
|
package xsbti;
|
||
|
|
|
||
|
|
public final class FullReload extends RuntimeException
|
||
|
|
{
|
||
|
|
private final String[] arguments;
|
||
|
|
public FullReload(String[] arguments)
|
||
|
|
{
|
||
|
|
this.arguments = arguments;
|
||
|
|
}
|
||
|
|
public String[] arguments() { return arguments; }
|
||
|
|
}
|