You are here

public function ValidationError::__toString in Backup and Migrate 8.4

String representation of the exception.

Return value

string the string representation of the exception.

File

lib/backup_migrate_core/src/Config/ValidationError.php, line 64

Class

ValidationError
Class ValidationError.

Namespace

BackupMigrate\Core\Config

Code

public function __toString() {
  return strtr($this
    ->getMessage(), $this
    ->getReplacement());
}