. */ /** * The Exception thrown by Context::assertIsSatisfied() if assertion fails. * @author Chris Corbyn * @package Yay */ class Yay_NotSatisfiedException extends Exception { /** * Create a new NotSatisfiedException with $message. * @param string $message */ public function __construct($message) { parent::__construct($message); } }