@itwin/appui-abstract
Version:
iTwin.js UI abstractions
13 lines • 590 B
TypeScript
/** @packageDocumentation
* @module Utilities
*/
import { BentleyError, GetMetaDataFunction } from "@itwin/core-bentley";
/** iTwin.js UI UiError class is a subclass of BentleyError. Errors are logged.
* @public @deprecated in 4.3 - might be removed in next major version. Use [[Bentley.BentleyError]] instead.
*/
export declare class UiError extends BentleyError {
category: string;
/** Constructs UiError using BentleyError. */
constructor(category: string, message: string, errorNumber?: number, getMetaData?: GetMetaDataFunction);
}
//# sourceMappingURL=UiError.d.ts.map