You are here

public function ConnectorException::isCustomized in Acquia Connector 8

Same name and namespace in other branches
  1. 8.2 src/ConnectorException.php \Drupal\acquia_connector\ConnectorException::isCustomized()
  2. 3.x src/ConnectorException.php \Drupal\acquia_connector\ConnectorException::isCustomized()

Check is customized.

Return value

bool TRUE if not custom message is not empty, FALSE otherwise.

File

src/ConnectorException.php, line 43

Class

ConnectorException
Produce an exception for certain cases in the connector.

Namespace

Drupal\acquia_connector

Code

public function isCustomized() {
  return !empty($this->custom);
}