| Index: lib/core/exceptions.dart
|
| ===================================================================
|
| --- lib/core/exceptions.dart (revision 13885)
|
| +++ lib/core/exceptions.dart (working copy)
|
| @@ -114,7 +114,7 @@
|
|
|
| class NotImplementedException implements Exception {
|
| const NotImplementedException([String message]) : this._message = message;
|
| - String toString() => (this._message != null
|
| + String toString() => (this._message !== null
|
| ? "NotImplementedException: $_message"
|
| : "NotImplementedException");
|
| final String _message;
|
|
|