| Index: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/context/AnalysisContextImpl.java
|
| diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/context/AnalysisContextImpl.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/context/AnalysisContextImpl.java
|
| index 628b462272d89599df3dc5919396b5186bc1311c..22f667009854081f15585cccc289bea6134c9a82 100644
|
| --- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/context/AnalysisContextImpl.java
|
| +++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/context/AnalysisContextImpl.java
|
| @@ -2691,7 +2691,7 @@ public class AnalysisContextImpl implements InternalAnalysisContext {
|
| } catch (AnalysisException exception) {
|
| throw exception;
|
| } catch (Exception exception) {
|
| - throw new AnalysisException(exception);
|
| + throw new AnalysisException("Exception", exception);
|
| }
|
| state = dartEntry.getState(descriptor);
|
| }
|
| @@ -2785,7 +2785,7 @@ public class AnalysisContextImpl implements InternalAnalysisContext {
|
| } catch (AnalysisException exception) {
|
| throw exception;
|
| } catch (Exception exception) {
|
| - throw new AnalysisException(exception);
|
| + throw new AnalysisException("Exception", exception);
|
| }
|
| state = htmlEntry.getState(descriptor);
|
| }
|
|
|