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
zendframework1
library
Zend
Console
Getopt
Exception.php
Go to the documentation of this file.
1
<?php
26
#require_once 'Zend/Exception.php';
27
28
35
class
Zend_Console_Getopt_Exception
extends
Zend_Exception
36
{
42
protected
$usage
=
''
;
43
51
public
function
__construct
(
$message
,
$usage
=
''
)
52
{
53
$this->usage =
$usage
;
54
parent::__construct(
$message
);
55
}
56
62
public
function
getUsageMessage
()
63
{
64
return
$this->usage
;
65
}
66
}
Zend_Exception
Definition:
Exception.php:28
Zend_Console_Getopt_Exception
Definition:
Exception.php:35
$message
$message
Definition:
notifications.php:7
Zend_Console_Getopt_Exception\$usage
$usage
Definition:
Exception.php:42
Zend_Console_Getopt_Exception\getUsageMessage
getUsageMessage()
Definition:
Exception.php:62
Zend_Console_Getopt_Exception\__construct
__construct($message, $usage='')
Definition:
Exception.php:51