blob: 0de89e000a006462153bdc3d4a1abe4f38f5f0f5 [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.
import 'package:graphql/client.dart';
class RetryableMergeException implements Exception {
RetryableMergeException(this.cause, this.graphQLErrors);
final String cause;
final List<GraphQLError> graphQLErrors;
@override
String toString() {
return cause;
}
}