fixup exception constructor for php 5.2

This commit is contained in:
Evan Prodromou 2010-12-20 18:28:21 -05:00
parent 704a20f58b
commit f63355451d
1 changed files with 4 additions and 0 deletions

View File

@ -299,6 +299,10 @@ class oEmbedHelper
class oEmbedHelper_Exception extends Exception
{
public function __construct($message = "", $code = 0, $previous = null)
{
parent::__construct($message, $code, $previous);
}
}
class oEmbedHelper_BadHtmlException extends oEmbedHelper_Exception