B
void Start()
{
StartCoroutine(asd());
}
IEnumerator asd()
{
try
{
throw new System.Exception("Error!");
}
catch (System.Exception ex)
{
print(ex.Message);
}
yield return null;
}

