Version: 2017.1
public string error ;

Descripción

Retorna un mensaje de error si hay un error durante la descarga (Lectura solamente).

Si no hubo error, error devolverá null o un string vacío (esto se debe a que algunas plataformas no permiten valores nulos para valores string). Le recomendamos que utilice String.IsNullOrEmpty para comprobar la presencia de un error para que ambos casos estén cubiertos.

If the object has not finished downloading the data, it will block until the download has finished. Use isDone or yield to see if the data is available.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { // Make a request with an invalid url public string url = "invalid_url"; IEnumerator Start() { WWW www = new WWW(url); yield return www; if (!string.IsNullOrEmpty(www.error)) Debug.Log(www.error); } }

En el ejemplo el URL no está válido por lo que el mensaje de error será "Couldn't resolve host".