/**
  * Constructs a new ezcInputFormWrongInputSourceException.
  *
  * @param string $inputSource
  * @return void
  */
 function __construct($inputSource)
 {
     parent::__construct("Wrong input source '{$inputSource}'.");
 }
 /**
  * Constructs a new ezcInputFormValidDataAvailableException.
  *
  * @param string $fieldName
  * @return void
  */
 function __construct($fieldName)
 {
     parent::__construct("You are not allowed to request RAW data for the '{$fieldName}' field which has valid data.");
 }
 /**
  * Constructs a new ezcInputFormInvalidDefinitionException.
  *
  * @param string $validationMessage
  * @return void
  */
 function __construct($validationMessage)
 {
     parent::__construct("Invalid definition array: {$validationMessage}.");
 }
예제 #4
0
 /**
  * Constructs a new ezcInputFormFieldNotFoundException.
  *
  * @param string $fieldName
  * @return void
  */
 function __construct($fieldName)
 {
     parent::__construct("The field '{$fieldName}' could not be found in the input source.");
 }
 /**
  * Constructs a new ezcInputFormVariableMissingException.
  *
  * @param string $fieldName
  * @return void
  */
 function __construct($fieldName)
 {
     parent::__construct("Required input field '{$fieldName}' missing.");
 }
예제 #6
0
 /**
  * Constructs a new ezcInputFormNoValidDataException.
  *
  * @param string $fieldName
  * @return void
  */
 function __construct($fieldName)
 {
     parent::__construct("Invalid field name '{$fieldName}' requested.");
 }
예제 #7
0
 /**
  * Constructs a new ezcInputFormUnknownFieldException.
  *
  * @param string $fieldName
  * @return void
  */
 function __construct($fieldName)
 {
     parent::__construct("The field '{$fieldName}' is not defined.");
 }