// Token: 0x06002168 RID: 8552 RVA: 0x00050350 File Offset: 0x0004F350 public static bool Parse(string str, out EngineErrorCode value) { if (EngineErrorCodeConverter.typeMap.TryGetValue(str, out value)) { return(true); } value = EngineErrorCode.Undefined; return(false); }
public EngineException(string message, EngineErrorCode code, Exception inner) : this(message, code) { InnerException = inner; }
public EngineException(string message, EngineErrorCode code) { ErrorMsg = message; ErrorCode = code; }