Triggered before LemonStand update request is issued.
In the event handler you can throw an exception in order to cancel the request. Usage example:
public function subscribeEvents()
{
Backend::$events->addEvent('core:onBeforeSoftwareUpdateRequest', $this, 'before_software_update_request');
}
public function before_software_update_request()
{
throw new Phpr_ApplicationException("We're sorry, you cannot update this store.");
}