mirror of
https://github.com/sbt/sbt.git
synced 2026-08-31 10:14:46 +02:00
Add support for a deep reload where the configuration is reread
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
package xsbti;
|
||||
|
||||
public final class FullReload extends RuntimeException
|
||||
{
|
||||
private final String[] arguments;
|
||||
public FullReload(String[] arguments)
|
||||
{
|
||||
this.arguments = arguments;
|
||||
}
|
||||
public String[] arguments() { return arguments; }
|
||||
}
|
||||
Reference in New Issue
Block a user