UNPKG

@ionic/core

Version:
22 lines (21 loc) 682 B
/*! * (C) Ionic http://ionicframework.com - MIT License */ export var ExceptionCode; (function (ExceptionCode) { /** * API is not implemented. * * This usually means the API can't be used because it is not implemented for * the current platform. */ ExceptionCode["Unimplemented"] = "UNIMPLEMENTED"; /** * API is not available. * * This means the API can't be used right now because: * - it is currently missing a prerequisite, such as network connectivity * - it requires a particular platform or browser version */ ExceptionCode["Unavailable"] = "UNAVAILABLE"; })(ExceptionCode || (ExceptionCode = {}));