Add support for a deep reload where the configuration is reread

This commit is contained in:
Mark Harrah
2010-01-12 18:52:14 -05:00
parent 67f8fc5c06
commit 200581abc0
2 changed files with 17 additions and 1 deletions
@@ -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; }
}