Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
module-import-export
Model
Import
ErrorProcessing
ProcessingError.php
Go to the documentation of this file.
1
<?php
7
namespace
Magento\ImportExport\Model\Import\ErrorProcessing
;
8
15
class
ProcessingError
16
{
17
const
ERROR_LEVEL_CRITICAL
=
'critical'
;
18
const
ERROR_LEVEL_NOT_CRITICAL
=
'not-critical'
;
19
const
ERROR_LEVEL_WARNING
=
'warning'
;
20
const
ERROR_LEVEL_NOTICE
=
'notice'
;
21
25
protected
$errorCode
;
26
30
protected
$errorMessage
;
31
35
protected
$errorDescription
;
36
40
protected
$rowNumber
;
41
45
protected
$columnName
;
46
50
protected
$errorLevel
;
51
61
public
function
init
(
62
$errorCode
,
63
$errorLevel
=
null
,
64
$rowNumber
=
null
,
65
$columnName
=
null
,
66
$errorMessage
=
null
,
67
$errorDescription
=
null
68
) {
69
$this->errorCode =
$errorCode
;
70
$this->errorLevel =
$errorLevel
;
71
$this->rowNumber =
$rowNumber
;
72
$this->columnName =
$columnName
;
73
$this->errorMessage =
$errorMessage
;
74
$this->errorDescription =
$errorDescription
;
75
}
76
80
public
function
getErrorCode
()
81
{
82
return
$this->errorCode
;
83
}
84
88
public
function
getErrorMessage
()
89
{
90
return
$this->errorMessage
;
91
}
92
96
public
function
getRowNumber
()
97
{
98
return
$this->rowNumber
;
99
}
100
104
public
function
getColumnName
()
105
{
106
return
$this->columnName
;
107
}
108
112
public
function
getErrorLevel
()
113
{
114
return
$this->errorLevel
;
115
}
116
120
public
function
getErrorDescription
()
121
{
122
return
$this->errorDescription
;
123
}
124
}
Magento\ImportExport\Model\Import\ErrorProcessing\ProcessingError\getErrorMessage
getErrorMessage()
Definition:
ProcessingError.php:88
Magento\ImportExport\Model\Import\ErrorProcessing\ProcessingError\$errorLevel
$errorLevel
Definition:
ProcessingError.php:50
Magento\ImportExport\Model\Import\ErrorProcessing\ProcessingError\ERROR_LEVEL_NOT_CRITICAL
const ERROR_LEVEL_NOT_CRITICAL
Definition:
ProcessingError.php:18
Magento\ImportExport\Model\Import\ErrorProcessing\ProcessingError\getErrorLevel
getErrorLevel()
Definition:
ProcessingError.php:112
Magento\ImportExport\Model\Import\ErrorProcessing\ProcessingError\$columnName
$columnName
Definition:
ProcessingError.php:45
Magento\ImportExport\Model\Import\ErrorProcessing\ProcessingError\ERROR_LEVEL_NOTICE
const ERROR_LEVEL_NOTICE
Definition:
ProcessingError.php:20
Magento\ImportExport\Model\Import\ErrorProcessing\ProcessingError
Definition:
ProcessingError.php:15
Magento\ImportExport\Model\Import\ErrorProcessing\ProcessingError\ERROR_LEVEL_WARNING
const ERROR_LEVEL_WARNING
Definition:
ProcessingError.php:19
Magento\ImportExport\Model\Import\ErrorProcessing\ProcessingError\getColumnName
getColumnName()
Definition:
ProcessingError.php:104
Magento\ImportExport\Model\Import\ErrorProcessing\ProcessingError\$errorCode
$errorCode
Definition:
ProcessingError.php:25
Magento\ImportExport\Model\Import\ErrorProcessing\ProcessingError\ERROR_LEVEL_CRITICAL
const ERROR_LEVEL_CRITICAL
Definition:
ProcessingError.php:17
Magento\ImportExport\Model\Import\ErrorProcessing\ProcessingError\$rowNumber
$rowNumber
Definition:
ProcessingError.php:40
Magento\ImportExport\Model\Import\ErrorProcessing\ProcessingError\getRowNumber
getRowNumber()
Definition:
ProcessingError.php:96
Magento\ImportExport\Model\Import\ErrorProcessing\ProcessingError\getErrorDescription
getErrorDescription()
Definition:
ProcessingError.php:120
Magento\ImportExport\Model\Import\ErrorProcessing\ProcessingError\getErrorCode
getErrorCode()
Definition:
ProcessingError.php:80
Magento\ImportExport\Model\Import\ErrorProcessing
Definition:
ProcessingError.php:7
Magento\ImportExport\Model\Import\ErrorProcessing\ProcessingError\init
init( $errorCode, $errorLevel=null, $rowNumber=null, $columnName=null, $errorMessage=null, $errorDescription=null)
Definition:
ProcessingError.php:61
Magento\ImportExport\Model\Import\ErrorProcessing\ProcessingError\$errorMessage
$errorMessage
Definition:
ProcessingError.php:30
Magento\ImportExport\Model\Import\ErrorProcessing\ProcessingError\$errorDescription
$errorDescription
Definition:
ProcessingError.php:35