You are here

public function ServicesException::getData in Services 7.3

Same name and namespace in other branches
  1. 6.3 services.runtime.inc \ServicesException::getData()

Returns the data associated with the exception.

Return value

mixed

File

includes/services.runtime.inc, line 39
Contains functions that only are necessary when a service call is made. This has broken out so that this code isn't loaded for every page load.

Class

ServicesException
A exception thrown by services and related modules when something goes wrong.

Code

public function getData() {
  return $this->data;
}