blob: 14c1ca0498efcd419a9bef893fa037f48eb382cf [file] [log] [blame]
// Copyright (c) 2019, 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.import 'dart:async';
class ScriptNotFound implements Exception {
final String scriptPath;
ScriptNotFound(this.scriptPath) : super();
@override
String toString() => 'Failed to load script at path: $scriptPath';
}