2023-04-10 15:36:59 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) HashiCorp, Inc.
|
|
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
|
|
*/
|
|
|
|
|
2019-10-15 18:32:58 +00:00
|
|
|
import AdapterError from '@ember-data/adapter/error';
|
2018-07-31 21:32:17 +00:00
|
|
|
|
|
|
|
export const NO_LEADER = 'No cluster leader';
|
|
|
|
|
2020-06-11 21:23:00 +00:00
|
|
|
export default class NoLeaderError extends AdapterError {
|
|
|
|
message = NO_LEADER;
|
|
|
|
}
|