blob: 155f38a7118a617852baf871b421af384f1814b1 [file] [log] [blame]
/*
* Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file
* for details. All rights reserved. Use of this source code is governed by a
* BSD-style license that can be found in the LICENSE file.
*/
/**
* @assertion FormatException([String message = "", dynamic source, int offset])
* Creates a new FormatException with an optional error message.
* @description Checks that if [message] optional argument id not passed to the
* constructor, [message] property is [""] by default.
* @author iarkh
*/
import "../../../Utils/expect.dart";
main() {
FormatException e = FormatException();
Expect.equals("", e.message);
}