org.ligoj.app.api.PluginNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plugin-api Show documentation
Show all versions of plugin-api Show documentation
Plugin API definition and compatibility following semver
The newest version!
/*
* Licensed under MIT (https://github.com/ligoj/ligoj/blob/master/LICENSE)
*/
package org.ligoj.app.api;
import lombok.Getter;
/**
* An exception from a not found plug-in.
*/
@Getter
public class PluginNotFoundException extends PluginException {
/**
* SID
*/
private static final long serialVersionUID = 1L;
/**
* All arguments constructor.
*
* @param plugin The requested plug-in of node identifier.
*/
public PluginNotFoundException(final String plugin) {
super(plugin, "Not found");
}
}