// 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);
 }
Exemplo n.º 2
0
 public EngineException(string message, EngineErrorCode code, Exception inner)
     : this(message, code)
 {
     InnerException = inner;
 }
Exemplo n.º 3
0
 public EngineException(string message, EngineErrorCode code)
 {
     ErrorMsg  = message;
     ErrorCode = code;
 }