UNPKG

angular2

Version:

Angular 2 - a web framework for modern web apps

8 lines (7 loc) 306 B
import { stringify } from 'angular2/src/facade/lang'; import { BaseException } from 'angular2/src/facade/exceptions'; export class InvalidPipeArgumentException extends BaseException { constructor(type, value) { super(`Invalid argument '${value}' for pipe '${stringify(type)}'`); } }