WC_Tax_Rate_Importer::set_import_error_message()protectedWC 1.0

Set the import error message.

Method of the class: WC_Tax_Rate_Importer{}

No Hooks.

Returns

null. Nothing (null).

Usage

// protected - for code of main (parent) or child class
$result = $this->set_import_error_message( $message );
$message(string) (required)
Error message.

WC_Tax_Rate_Importer::set_import_error_message() code WC 9.8.5

protected function set_import_error_message( $message ) {
	$this->import_error_message = $message;
}