Phergie_Plugin_Abstract::fail PHP Method

fail() protected method

Indicates that the plugin failed to load due to an unsatisfied runtime requirement, such as a missing dependency.
protected fail ( string $message ) : Phergie_Plugin_Abstract
$message string Error message to provide more information about the reason for the failure
return Phergie_Plugin_Abstract Provides a fluent interface
    protected function fail($message)
    {
        throw new Phergie_Plugin_Exception($message, Phergie_Plugin_Exception::ERR_REQUIREMENT_UNSATISFIED);
    }