예제 #1
0
 /**
  * Constructor for to initialize the message with
  * the passed code.
  *
  * @param string $code The code to initialize the message with
  * @return void
  */
 public function __construct($code)
 {
     parent::__construct(Faett_Manager_Model_Message::CONSOLE, $code);
 }
예제 #2
0
파일: Error.php 프로젝트: natxetee/magento2
 public function __construct($code)
 {
     parent::__construct(Mage_Core_Model_Message::ERROR, $code);
 }
예제 #3
0
 /**
  * Initializes a migration message.
  *
  * @param string $code
  * @return void
  */
 public function __construct($code)
 {
     return parent::__construct(self::MESSAGE_TYPE, $code);
 }