1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
| namespace Yw.Vmo
| {
| /// <summary>
| ///
| /// </summary>
| public class YOops
| {
| /// <summary>
| ///
| /// </summary>
| public static InternalException Oh(int code, string errorCode, string errorMsg, object logicData = null)
| {
| return new InternalException(code, errorCode, errorMsg, logicData);
| }
|
| /// <summary>
| ///
| /// </summary>
| public static InternalException Oh(eResultCode code, string errorCode, string errorMsg, object logicData = null)
| {
| return new InternalException(code, errorCode, errorMsg, logicData);
| }
|
| /// <summary>
| ///
| /// </summary>
| public static InternalException Oh(eResultCode code, InternalErrorCodes errorCode, string errorMsg, object logicData = null)
| {
| return new InternalException(code, errorCode, errorMsg, logicData);
| }
|
|
|
| }
| }
|
|