Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
FieldDataConversionException.php
Go to the documentation of this file.
1 <?php
6 namespace Magento\Framework\DB;
7 
11 class FieldDataConversionException extends \Exception
12 {
16  const MESSAGE_PATTERN = "Error converting field `%s` in table `%s` where `%s`=%s using %s."
17  . PHP_EOL
18  . "Fix data or replace with a valid value."
19  . PHP_EOL
20  . "Failure reason: '%s'";
21 }