UNPKG
@shopware-ag/meteor-admin-sdk
Version:
alpha (5.5.0-iap.8)
latest (6.4.0)
6.4.0
6.3.0
6.2.1
6.2.0
6.1.0
6.0.3
6.0.2
6.0.1
6.0.0
5.9.2
5.9.1
5.9.0
5.8.5
5.8.4
5.8.3
5.8.2
5.8.1
5.8.0
5.7.8
5.7.7
5.7.6
5.7.5
5.7.4
5.7.3
5.7.2
5.7.1
5.7.0
5.6.2
5.6.1
5.6.0
5.5.1
5.5.0
5.5.0-iap.8
5.5.0-iap.7
5.5.0-iap.6
5.5.0-iap.5
5.5.0-iap.4
5.4.6
5.4.5
5.4.4
5.4.4-iap.3
5.4.4-iap.1
5.4.4-iap.0
5.4.3
5.4.2
5.4.1
5.4.0
5.3.1
5.3.0
5.2.1
5.2.0
5.1.1
5.1.0
5.0.2
5.0.1
5.0.0
4.0.3
4.0.2
4.0.1
4.0.0
3.0.17
3.0.16
The Meteor SDK for the Shopware Administration.
github.com/shopware/meteor
shopware/meteor
@shopware-ag/meteor-admin-sdk
/
umd
/
_internals
/
error-handling
/
HandleError.d.ts
13 lines
(12 loc)
•
292 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
type
typeName =
'__HandleError__'
;
interface
HandleErrorJson
{
__type__
: typeName;
__code__
:
number
;
__message__
:
string
; }
export
default
class
HandleError
extends
Error
{
code
:
number
;
constructor
(
msg
:
string
,
code
?:
number
);
toJSON
():
HandleErrorJson
; }
export
{};