<?php
/**
* This exception is thrown when response sent to browser is not in a valid format.
*
* @package sfWebBrowserPlugin
* @author Tristan Rivoallan <hide@address.com>
*/
class sfWebBrowserInvalidResponseException extends sfException
{
/**
* Class constructor.
*
* @param string The error message
* @param int The error code
*/
public function __construct($message = null, $code = 0)
{
$this->setName('sfWebBrowserInvalidResponseException');
parent::__construct($message, $code);
}
}