I included this class in one of my scripst:
using com.shephertz.app42.paas.sdk.csharp;
using com.shephertz.app42.paas.sdk.csharp.user;
using com.shephertz.app42.paas.sdk.csharp.storage;
public class UserCallBack : App42CallBack
{
private string result = "";
public void OnSuccess(object user)
{
try
{
// some code
}
catch (App42Exception e)
{
result = e.ToString();
}
}
public void OnException(Exception e)
{
result = e.ToString();
}
}
Unity gives me this error: "The type or namespace name `Exception' could not be found."