Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.3k views
in Technique[技术] by (71.8m points)

angular - Module '"angular2/angular2"' has no exported member 'ExceptionHandler'

I want to customize the default exception handler behavior and to do that I want to override the ExceptionHandler class, but I get the next error when I use the next code

Error:

  Module '"angular2/angular2"' has no exported member 'ExceptionHandler'. 

Code:

    import {ExceptionHandler} from 'angular2/angular2';

Is this the correct aproach ? From where or what I have to import ?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I think it's bug. ExceptionHandler must be exported here, but it's not.

For now for experimenting you can import ExceptionHandler like:

import { ExceptionHandler } from 'angular2/src/core/facade/exceptions';

Check out this plunker


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...