You are right, when using the print_standard_error function you can not use parameters for phrases.
You can with the satement:
PHP Code:
construct_phrase($vbphrase['my_phrase_with_parameter'], $parameter)
retrieve the phrase with a parameter replacement.
If you now use the following for the error (mind the extra ', 0'):
PHP Code:
print_standard_error('my text', 0);
The error text will now not be retrieved from a phrase by the print_standard_error function, but instead the text you pass will be used.