/*
 * Java
 *
 * 2013-2022 ESR - Not subject to Copyright.
 *
 * This document has been released and published by E-S-R consortium, a non-profit entity.
 * To learn more about E-S-R consortium, please visit http://www.e-s-r.net/.
 * The matter contained in this document is not subject to copyright; you are free to use it for any purpose, for more information see E-S-R consortium policies.
 */
package ej.kf;

/**
 * This exception is thrown by the system when a Feature code has been stopped because it is being uninstalled.
 * Only kernel code can receive this exception: it never occurs in Feature code. Each call from kernel to a Feature shall catch this exception
 * and handle the fact the Feature is not able to execute the desired "service".
 */
public class DeadFeatureException extends RuntimeException{

}
