Error::handle_error( string $access_message )

Handles the error by triggering a warning.

Description

See also

Parameters

$access_message

(string) (Required) Message about how the error handler was triggered.

Source

File: src/error.php

	protected function handle_error( $access_message ) {
		$data = $this->get_error_data();
		$message = $this->get_error_message() . ' ' . $access_message;

		torro()->error_handler()->doing_it_wrong( $data['method'], $message, $data['version'] );
	}

Changelog

Changelog
Version Description
1.0.0 Introduced.