no se que intentas hacer pero a ver si esto te ayuda
Código PHP:
function llamarFuncion($nombreFuncion){
if(!function_exists($nombreFuncion)){
throw new Exception('Error, esa funcion no existe');
} else {
return $nombreFuncion();
}
}
try{
llamarFuncion('unafuncion');
}catch(Exception $e){
echo $e->getMessage();
}