(code ApiErrorType, object LValue)
| 35 | } |
| 36 | |
| 37 | func newApiError(code ApiErrorType, object LValue) *ApiError { |
| 38 | return &ApiError{code, object, "", nil} |
| 39 | } |
| 40 | |
| 41 | func newApiErrorS(code ApiErrorType, message string) *ApiError { |
| 42 | return newApiError(code, LString(message)) |
no outgoing calls
no test coverage detected
searching dependent graphs…