net.anotheria.anoprise.fs.FSItemNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ano-prise Show documentation
Show all versions of ano-prise Show documentation
Collection of utils for different enterprise class projects. Among other stuff contains
Caches, Mocking, DualCrud, MetaFactory and SessionDistributorService. Visit https://opensource.anotheria.net for details.
package net.anotheria.anoprise.fs;
/**
* FSItemNotFoundException exception of the {@link FSService} interface based on {@link FSServiceException}.
*
* @author abolbat
* @version 1.0, 2010/02/11
*/
public class FSItemNotFoundException extends FSServiceException {
/**
* Basic serialVersionUID variable.
*/
private static final long serialVersionUID = 137192803182091660L;
/**
* Creates a new {@link FSItemNotFoundException} with a item id.
*
* @param ownerId
* - owner id
*/
public FSItemNotFoundException(String ownerId) {
super("File system item not found. Owner id: " + ownerId);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy