added scm-hg-plugin

This commit is contained in:
Sebastian Sdorra
2010-09-08 17:08:34 +02:00
parent 61c6f2d9bb
commit 5a8288337b
6 changed files with 384 additions and 0 deletions

View File

@@ -0,0 +1,64 @@
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package sonia.scm;
/**
*
* @author Sebastian Sdorra
*/
public class ConfigurationException extends RuntimeException
{
/** Field description */
private static final long serialVersionUID = 3462977946341972841L;
//~--- constructors ---------------------------------------------------------
/**
* Constructs ...
*
*/
public ConfigurationException()
{
super();
}
/**
* Constructs ...
*
*
* @param message
*/
public ConfigurationException(String message)
{
super(message);
}
/**
* Constructs ...
*
*
* @param cause
*/
public ConfigurationException(Throwable cause)
{
super(cause);
}
/**
* Constructs ...
*
*
* @param message
* @param cause
*/
public ConfigurationException(String message, Throwable cause)
{
super(message, cause);
}
}

View File

@@ -87,4 +87,12 @@ public interface Manager<T, E extends Exception> extends Initable, Closeable
* @return
*/
public Collection<T> getAll();
/**
* Method description
*
*
* @return
*/
public boolean isConfigured();
}