public static bool IsError(this EError?error, EErrorCode errorCode)
 {
     return(IsError(error, errorCode.ToString()));
 }
Exemplo n.º 2
0
 public EError(EErrorCode code, EError?innerError = null, Dictionary <string, JToken>?data = null) :
     this(code.ToString(), innerError, data)
 {
 }