/**
  * Constructor
  * @param \Exception $exception
  * @param int $padPositionX x position of the pad in the main screen
  * @param int $padPositionY y position of the pad in the main screen
  */
 public function __construct(\Exception $exception, $padPositionX, $padPositionY)
 {
     $this->exception = $exception;
     parent::__construct($padPositionX, $padPositionY);
 }
 /**
  * Constructor
  * @param array $loadedExtensionList list of loaded extensions
  * @param int $padPositionX x position of the pad in the main screen
  * @param int $padPositionY y position of the pad in the main screen
  */
 public function __construct(array $loadedExtensionList, $padPositionX, $padPositionY)
 {
     $this->loadedExtensionList = $loadedExtensionList;
     natcasesort($this->loadedExtensionList);
     parent::__construct($padPositionX, $padPositionY);
 }
 /**
  * Constructor
  * @param array $stackTrace stack trace
  * @param int $padPositionX x position of the pad in the main screen
  * @param int $padPositionY y position of the pad in the main screen
  */
 public function __construct(array $stackTrace, $padPositionX, $padPositionY)
 {
     parent::__construct($padPositionX, $padPositionY);
     $this->stackTrace = $stackTrace;
 }
 /**
  * Constructor
  * @param float $executionTime execution time
  * @param int $padPositionX x position of the pad in the main screen
  * @param int $padPositionY y position of the pad in the main screen
  */
 public function __construct($executionTime, $padPositionX, $padPositionY)
 {
     parent::__construct($padPositionX, $padPositionY);
     $this->executionTime = (double) $executionTime;
 }
 /**
  * Constructor
  * @param array $includedFileList list of included files
  * @param int $padPositionX x position of the pad in the main screen
  * @param int $padPositionY y position of the pad in the main screen
  */
 public function __construct(array $includedFileList, $padPositionX, $padPositionY)
 {
     $this->includedFileList = $includedFileList;
     parent::__construct($padPositionX, $padPositionY);
 }