igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
22 lines (21 loc) • 650 B
TypeScript
import { BaseError, Type } from "./type";
import { IXmlLineInfo } from "./IXmlLineInfo";
/**
* @hidden
*/
export declare class XmlException extends BaseError {
static $t: Type;
private d;
private f;
private i;
private h;
private c;
constructor(a: number);
constructor(a: number, b: string, c: BaseError);
constructor(a: number, b: IXmlLineInfo, c: string, d: string);
constructor(a: number, b: string);
constructor(a: number, b: string, c: BaseError, d: number, e: number);
constructor(a: number, ..._rest: any[]);
get lineNumber(): number;
get linePosition(): number;
}