2015-09-25 14:48:17 -07:00
|
|
|
import {CONST, Type} from 'angular2/src/core/facade/lang';
|
2015-09-10 15:25:36 -07:00
|
|
|
import {BaseException, WrappedException} from 'angular2/src/core/facade/exceptions';
|
2015-08-07 11:41:38 -07:00
|
|
|
|
|
|
|
|
export class InvalidPipeArgumentException extends BaseException {
|
|
|
|
|
constructor(type: Type, value: Object) {
|
|
|
|
|
super(`Invalid argument '${value}' for pipe '${type}'`);
|
|
|
|
|
}
|
|
|
|
|
}
|