blob: acb665bf6a89eae7165e1d7417c530d10278d170 [file] [log] [blame]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
class BrowserInstallerException implements Exception {
BrowserInstallerException(this.message);
final String message;
@override
String toString() => message;
}
class ToolException implements Exception {
ToolException(this.message);
final String message;
@override
String toString() => message;
}