Skip to content

Latest commit

 

History

History
50 lines (39 loc) · 1.55 KB

Errors.md

File metadata and controls

50 lines (39 loc) · 1.55 KB
id sidebar_label title hide_title
Errors
Errors
Errors
true

OpenError

enum OpenError {
  AppNotFound = "AppNotFound",
  ErrorOnLaunch = "ErrorOnLaunch",
  AppTimeout = "AppTimeout",
  ResolverUnavailable = "ResolverUnavailable"
}

Contains constants representing the errors that can be encountered when calling the open method on the DesktopAgent object.

See also

ResolveError

enum ResolveError {
  NoAppsFound = "NoAppsFound",
  ResolverUnavailable = "ResolverUnavailable",
  ResolverTimeout = "ResolverTimeout"
}

Contains constants representing the errors that can be encountered when calling the findIntent or findIntentsByContext methods on the DesktopAgent.

See also

ChannelError

enum ChannelError {
  NoChannelFound = "NoChannelFound",
  AccessDenied = "AccessDenied",
  CreationFailed = "CreationFailed"
}

Contains constants representing the errors that can be encountered when calling channels using the joinChannel or getOrCreateChannel methods, or the getCurrentContext, broadcast or addBroadcastListener methods on the Channel object.