Renders an exception error message without further exceptions.

Parameters

$exception: The exception object that was thrown.

Return value

An error message.

3 calls to _drupal_render_exception_safe()
_drupal_exception_handler in includes/bootstrap.inc
Provides custom PHP exception handling.
_drupal_session_write in includes/session.inc
Writes an entire session to the database (internal use only).
_drupal_shutdown_function in includes/bootstrap.inc
Executes registered shutdown functions.

File

includes/errors.inc, line 132
Functions for error handling.

Code

function _drupal_render_exception_safe($exception) {
  return check_plain(strtr('%type: !message in %function (line %line of %file).', _drupal_decode_exception($exception)));
}