parent root
PHP: Throwable::getMessage - Manual
PHP 7.2.23 Release Announcement

Throwable::getMessage

(PHP 7)

Throwable::getMessageGets the message

Description

abstract public Throwable::getMessage ( void ) : string

Returns the message associated with the thrown object.

Parameters

This function has no parameters.

Return Values

Returns the message associated with the thrown object.

See Also

add a noteadd a note

User Contributed Notes 1 note

up
0
lavaniapankaj at gmail dot com
1 month ago
try
{
    functionnotexists();
}
catch (Throwable $e)
{
    /* Print error message. */
    pprint_r($e->getMessage());
}
To Top
parent root