blob: 0f6583712349d20931c261bc5c2bee9e19487171 [file] [log] [blame]
// Copyright (c) 2021, 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.
/// An expected exception thrown when there were no tests found to run.
class NoTestsFoundException implements Exception {
final String message;
NoTestsFoundException(this.message);
@override
String toString() => message;
}