PMA\libraries\PDF::Error PHP Method

Error() public method

Displays an error message
public Error ( string $error_message = '' ) : void
$error_message string the error message
return void
    public function Error($error_message = '')
    {
        Message::error(__('Error while creating PDF:') . ' ' . $error_message)->display();
        exit;
    }