namespace Yw.Vmo { /// /// /// public class YOops { /// /// /// public static InternalException Oh(int code, string errorCode, string errorMsg, object logicData = null) { return new InternalException(code, errorCode, errorMsg, logicData); } /// /// /// public static InternalException Oh(eResultCode code, string errorCode, string errorMsg, object logicData = null) { return new InternalException(code, errorCode, errorMsg, logicData); } /// /// /// public static InternalException Oh(eResultCode code, InternalErrorCodes errorCode, string errorMsg, object logicData = null) { return new InternalException(code, errorCode, errorMsg, logicData); } } }