All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.anotheria.anodoc.util.CommonModuleStorageException Maven / Gradle / Ivy

package net.anotheria.anodoc.util;

/**
 * Base exception class for this service, custom exceptions should derive from it.
 *
 * @author another
 * @version $Id: $Id
 */
public class CommonModuleStorageException extends Exception{
	/**
	 * Basic serial version UID.
	 */
	private static final long serialVersionUID = 1L;

	/**
	 * Default constructor.
	 *
	 * @param aMessage message of exception
	 */
	public CommonModuleStorageException(String aMessage){
		super(aMessage);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy