package org.molgenis.core.service;
public class PublicationServiceException extends RuntimeException
{
// The serial version UID of this class. Needed for serialization.
private static final long serialVersionUID = -6216398955010588895L;
/**
* The default constructor for <code>SearchException</code>.
*/
public PublicationServiceException()
{
// Documented empty block
}
/**
* Constructs a new instance of <code>SearchException</code>.
*
* @param message
* the throwable message.
*/
public PublicationServiceException(String message)
{
super(message);
}
}