blob: 6ec52ebda6fb52b50061b10f34893609f58b3654 [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/// Error thrown due to a bug in Sledge's implementation.
class InternalSledgeError extends Error {
String _message;
/// Default constructor.
InternalSledgeError(this._message);
@override
String toString() => 'Sledge internal error: `$_message`. Please file a bug.';
}