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

org.ligoj.app.api.PluginNotFoundException Maven / Gradle / Ivy

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");
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy