public function __construct($message, $severity = self::CODE_NOTICE, Exception $previous = null)
 {
     parent::__construct($message, $severity, $previous);
 }
 public function __construct($entityId)
 {
     $this->_entityId = $entityId;
     $message = "Unknown remote entity with entityid '{$entityId}'";
     parent::__construct($message, self::CODE_NOTICE);
 }