diff options
Diffstat (limited to 'lib/hintexception.php')
-rw-r--r-- | lib/hintexception.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hintexception.php b/lib/hintexception.php index c8bff750033..3934ae2a4c2 100644 --- a/lib/hintexception.php +++ b/lib/hintexception.php @@ -12,7 +12,7 @@ class HintException extends \Exception { private $hint; - public function __construct($message, $hint, $code = 0, Exception $previous = null) { + public function __construct($message, $hint = '', $code = 0, Exception $previous = null) { $this->hint = $hint; parent::__construct($message, $code, $previous); } |