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.

Return

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 8.7.0

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