1 /*
2  * Copyright (c) 2022 Huawei Device Co., Ltd.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #ifndef ECMASCRIPT_CONTAINERS_CONTAINERS_ERROR_H
17 #define ECMASCRIPT_CONTAINERS_CONTAINERS_ERROR_H
18 
19 #include "ecmascript/base/builtins_base.h"
20 #include "ecmascript/ecma_runtime_call_info.h"
21 
22 namespace panda::ecmascript::containers {
23 enum ErrorFlag {
24     TYPE_ERROR = 401,
25     RANGE_ERROR = 10200001,
26     IS_EMPTY_ERROR = 10200010,
27     BIND_ERROR = 10200011,
28     IS_NULL_ERROR = 10200012,
29     IS_NOT_EXIST_ERROR = 10200017,
30     CONCURRENT_MODIFICATION_ERROR = 10200201,
31     REFERENCE_ERROR = 10200301,
32 };
33 class ContainerError {
34 public:
35     static PUBLIC_API JSTaggedValue BusinessError(JSThread *thread, int32_t errorCode, const char *msg);
36     static PUBLIC_API JSTaggedValue BindError(JSThread *thread, const char *msg);
37     static PUBLIC_API JSTaggedValue ParamError(JSThread *thread, const char *msg);
38     static PUBLIC_API JSTaggedValue ReferenceError(JSThread *thread, const char *msg);
39 };
40 } // namespace panda::ecmascript::containers
41 #endif // ECMASCRIPT_CONTAINERS_CONTAINERS_ERROR_H
42