mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-26 05:44:12 +01:00
10 lines
273 B
PHP
10 lines
273 B
PHP
<?php
|
|
|
|
class BulkExportMissingParameterException extends BulkExportException
|
|
{
|
|
public function __construct($sFieldCode)
|
|
{
|
|
parent::__construct('Missing parameter: ' . $sFieldCode, Dict::Format('Core:BulkExport:MissingParameter_Param', $sFieldCode));
|
|
}
|
|
|
|
} |