Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
updraftplus
/
vendor
/
guzzle
/
guzzle
/
src
/
Guzzle
/
Service
/
Exception
:
ValidationException.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Guzzle\Service\Exception; use Guzzle\Common\Exception\RuntimeException; class ValidationException extends RuntimeException { protected $errors = array(); /** * Set the validation error messages * * @param array $errors Array of validation errors */ public function setErrors(array $errors) { $this->errors = $errors; } /** * Get any validation errors * * @return array */ public function getErrors() { return $this->errors; } }