BREAKING CHANGE: Exceptions are no longer part of the public API. We don't expect that anyone should be referring to the Exception types. ExceptionHandler.call(exception: any, stackTrace?: any, reason?: string): void; change to: ErrorHandler.handleError(error: any): void;
34 lines
655 B
TypeScript
34 lines
655 B
TypeScript
/**
|
|
* @license
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
|
|
/**
|
|
* Name of the primary outlet.
|
|
* @type {string}
|
|
*
|
|
* @stable
|
|
*/
|
|
export const PRIMARY_OUTLET = 'primary';
|
|
|
|
/**
|
|
* A collection of parameters.
|
|
*
|
|
* @stable
|
|
*/
|
|
export type Params = {
|
|
[key: string]: any
|
|
};
|
|
|
|
export class NavigationCancelingError extends Error {
|
|
public stack: any;
|
|
constructor(public message: string) {
|
|
super(message);
|
|
this.stack = (<any>new Error(message)).stack;
|
|
}
|
|
toString(): string { return this.message; }
|
|
}
|