dashboard/utils/error.js

7 lines
141 B
JavaScript

export class ClusterNotFoundError extends Error {
constructor(message) {
super(message);
this.name = 'ClusterNotFoundError';
}
}