/**
  * {@inheritdoc}
  * @see Scalr\Service\Aws\Rds.AbstractRdsDataType::throwExceptionIfNotInitialized()
  */
 protected function throwExceptionIfNotInitialized()
 {
     parent::throwExceptionIfNotInitialized();
     if ($this->dBParameterGroupName === null) {
         throw new RdsException(sprintf('dbParameterGroupName has not been initialized for the "%s" yet', get_class($this)));
     }
 }
Exemple #2
0
 /**
  * {@inheritdoc}
  * @see Scalr\Service\Aws\Rds.AbstractRdsDataType::throwExceptionIfNotInitialized()
  */
 protected function throwExceptionIfNotInitialized()
 {
     parent::throwExceptionIfNotInitialized();
     if ($this->dBSnapshotIdentifier === null) {
         throw new RdsException(sprintf('dbSnapshotIdentifier has not been initialized for "%s" yet.', get_class($this)));
     }
 }