blob: 6f107bd49f36559abbec1d7c9461058022a9c05f [file] [log] [blame]
// Copyright 2022 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 NoBuildFoundException implements Exception {
/// Create a custom exception for no build found Errors.
NoBuildFoundException(this.cause);
final String cause;
@override
String toString() => cause;
}