* @license http://www.gnu.org/licenses/gpl-2.0.html GPL version 2 * @category Stud.IP * @since 3.5 */ class InvalidValuesException extends Exception { private $checked = []; /** * Constructor * * @param string $message The error message * @param array $checked Associative array */ public function __construct($message, $checked) { $this->checked = $checked; parent::__construct($message); } public function getChecked() { return $this->checked; } }