WpOrg\Requests

Exception::getType()publicWP 1.0

Like {@see \Exception::getCode()}, but a string code.

Метод класса: Exception{}

Хуков нет.

Возвращает

Строку.

Использование

$Exception = new Exception();
$Exception->getType();

Код Exception::getType() WP 6.6.2

public function getType() {
	return $this->type;
}