I want to have alert notification on logic hook.

I have gone through many questions and posts but i didn't find the solution for sugar 10.3 (Enterprise Edition)

class save_customer
{
/*
*$bean :
*$event :
*$arguments :
*/
function save_customer($bean, $event, $arguments)
{

//Check If Customer ID present or not
$customerID = $bean->customer_id_c;
if ($customerID == "")
{

//Need to show alert message ("Customer ID empty")
}

}

Please suggest me some solutions.