00001 <?php 00007 class InvalidAttributeValueException extends Exception 00008 { 00015 public function __construct($value, $expected) 00016 { 00017 parent::__construct("Invalid attribute value: '$value' (Expected: '$expected')"); 00018 } 00019 } 00020 ?>