column = $column; } /** * @return string */ public function getColumn() { return $this->column; } /** * The type of error. * * Accepted values: ERROR_CODE_UNSPECIFIED, SYNTAX_ERROR, DEPRECATED_SYNTAX, * INTERNAL_ERROR * * @param self::ERROR_CODE_* $errorCode */ public function setErrorCode($errorCode) { $this->errorCode = $errorCode; } /** * @return self::ERROR_CODE_* */ public function getErrorCode() { return $this->errorCode; } /** * The detailed error message. * * @param string $errorMessage */ public function setErrorMessage($errorMessage) { $this->errorMessage = $errorMessage; } /** * @return string */ public function getErrorMessage() { return $this->errorMessage; } /** * The line number in the script where the error was thrown. * * @param string $line */ public function setLine($line) { $this->line = $line; } /** * @return string */ public function getLine() { return $this->line; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ScriptError::class, 'Google_Service_DisplayVideo_ScriptError');