Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1040 → Rev 1041

/hostadmiral/trunk/src/ak/hostadmiral/util/ModelStoreException.java
0,0 → 1,25
package ak.hostadmiral.util;
 
public class ModelStoreException
extends ModelException
{
public ModelStoreException()
{
this(null, null);
}
 
public ModelStoreException(String message)
{
this(message, null);
}
 
public ModelStoreException(Exception chainedException)
{
this(null, chainedException);
}
 
public ModelStoreException(String message, Exception chainedException)
{
super(message, chainedException);
}
}