$details
$details : string
Error details that should not be part of the main exception message, e.g. any additional debugging information.
Horde exception class that accepts output of error_get_last() as $code and mask itself as that error.
__construct(mixed $message = null, mixed $code_or_lasterror = null)
Exception constructor
If $lasterror is passed the return value of error_get_last() (or a matching format), the exception will be rewritten to have its file and line parameters match that of the array, and any message in the array will be appended to $message.
mixed | $message | The exception message, a PEAR_Error object, or an Exception object. |
mixed | $code_or_lasterror | Either a numeric error code, or an array from error_get_last(). |