2
0
mirror of https://github.com/esiur/esiur-js.git synced 2025-05-07 12:52:58 +00:00
esiur-js/src/Core/ExceptionCode.js
2022-08-29 19:09:24 +03:00

41 lines
975 B
JavaScript

export default //const ExceptionCode =
{
RuntimeException: 0,
HostNotReachable: 1,
AccessDenied: 2,
UserOrTokenNotFound: 3,
ChallengeFailed: 4,
ResourceNotFound: 5,
AttachDenied: 6,
InvalidMethod: 7,
InvokeDenied: 8,
CreateDenied: 9,
AddParentDenied: 10,
AddChildDenied: 11,
ViewAttributeDenied: 12,
UpdateAttributeDenied: 13,
StoreNotFound: 14,
ParentNotFound: 15,
ChildNotFound: 16,
ResourceIsNotStore: 17,
DeleteDenied: 18,
DeleteFailed: 19,
UpdateAttributeFailed: 20,
GetAttributesFailed: 21,
ClearAttributesFailed: 22,
TemplateNotFound: 23,
RenameDenied: 24,
ClassNotFound: 25,
MethodNotFound: 26,
PropertyNotFound: 27,
SetPropertyDenied: 28,
ReadOnlyProperty: 29,
GeneralFailure: 30,
AddToStoreFailed: 31,
NotAttached: 32,
AlreadyListened: 33,
AlreadyUnlistened: 34,
NotListenable: 35,
ParseError: 36,
Timeout: 37
};