mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2025-05-06 19:42:58 +00:00
47 lines
900 B
C#
47 lines
900 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Esiur.Core;
|
|
|
|
public enum ExceptionCode : ushort
|
|
{
|
|
HostNotReachable,
|
|
AccessDenied,
|
|
UserOrTokenNotFound,
|
|
ChallengeFailed,
|
|
ResourceNotFound,
|
|
AttachDenied,
|
|
InvalidMethod,
|
|
InvokeDenied,
|
|
CreateDenied,
|
|
AddParentDenied,
|
|
AddChildDenied,
|
|
ViewAttributeDenied,
|
|
UpdateAttributeDenied,
|
|
StoreNotFound,
|
|
ParentNotFound,
|
|
ChildNotFound,
|
|
ResourceIsNotStore,
|
|
DeleteDenied,
|
|
DeleteFailed,
|
|
UpdateAttributeFailed,
|
|
GetAttributesFailed,
|
|
ClearAttributesFailed,
|
|
TemplateNotFound,
|
|
RenameDenied,
|
|
ClassNotFound,
|
|
MethodNotFound,
|
|
PropertyNotFound,
|
|
SetPropertyDenied,
|
|
ReadOnlyProperty,
|
|
GeneralFailure,
|
|
AddToStoreFailed,
|
|
NotAttached,
|
|
AlreadyListened,
|
|
AlreadyUnlistened,
|
|
NotListenable,
|
|
ParseError,
|
|
Timeout
|
|
}
|