
package uk.co.wingpath.util;

/**
* This interface is used by classes (particularly exceptions) that provide
* help identifiers (for displaying online help).
*/
public interface Helpful
{
    /**
    * Gets the help identifier.
    * @return the help identifier.
    */
    String getHelpId ();
}

