* @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @link https://www.temando.com/ */ class Error extends DataObject implements ErrorInterface { /** * @return string */ public function getTitle() { return $this->getData(ErrorInterface::TITLE); } /** * @return string */ public function getDetail() { return $this->getData(ErrorInterface::DETAIL); } }