* @author Mike Boberski * @copyright 2009-2010 The OWASP Foundation * @license http://www.opensource.org/licenses/bsd-license.php New BSD license * @version SVN: $Id$ * @link http://www.owasp.org/index.php/ESAPI */ require_once dirname(__FILE__).'/EnterpriseSecurityException.php'; /** * An EncodingException should be thrown for any problems that occur when * encoding or decoding data. * * @category OWASP * @package ESAPI_Errors * @author Andrew van der Stock * @author Mike Boberski * @copyright 2009-2010 The OWASP Foundation * @license http://www.opensource.org/licenses/bsd-license.php New BSD license * @version Release: @package_version@ * @link http://www.owasp.org/index.php/ESAPI */ class EncodingException extends EnterpriseSecurityException { /** * Instantiates a new EncodingException. * * @param string $userMessage the message displayed to the user * @param string $logMessage the message logged * * @return does not return a value. */ function __construct($userMessage = '', $logMessage = '') { parent::__construct($userMessage, $logMessage); } } ?>