mirror of
https://github.com/status-im/consul.git
synced 2025-03-03 06:40:45 +00:00
12 lines
212 B
JavaScript
12 lines
212 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
export default class extends Error {
|
|
constructor(statusCode, message) {
|
|
super(message);
|
|
this.statusCode = statusCode;
|
|
}
|
|
}
|