| Index: lib/compiler/implementation/lib/mirrors.dart | 
| diff --git a/lib/compiler/implementation/lib/mirrors.dart b/lib/compiler/implementation/lib/mirrors.dart | 
| index f717d9b34a9df826a95c7a99c0ab702d17fb0493..bd5acc9900a62dd30383c310e56216ac72c16ed6 100644 | 
| --- a/lib/compiler/implementation/lib/mirrors.dart | 
| +++ b/lib/compiler/implementation/lib/mirrors.dart | 
| @@ -13,14 +13,14 @@ | 
| */ | 
| class _Mirrors { | 
| static MirrorSystem currentMirrorSystem() { | 
| -    throw new UnsupportedOperationException("MirrorSystem not implemented"); | 
| +    throw new StateError("MirrorSystem not implemented"); | 
| } | 
|  | 
| static Future<MirrorSystem> mirrorSystemOf(SendPort port) { | 
| -    throw new UnsupportedOperationException("MirrorSystem not implemented"); | 
| +    throw new StateError("MirrorSystem not implemented"); | 
| } | 
|  | 
| static InstanceMirror reflect(Object reflectee) { | 
| -    throw new UnsupportedOperationException("MirrorSystem not implemented"); | 
| +    throw new StateError("MirrorSystem not implemented"); | 
| } | 
| } | 
|  |