@rfdez/pvpc-mcp-server
Version:
Retrieve daily PVPC electricity tariffs for 2.0 TD consumers, published by Red Eléctrica.
14 lines (13 loc) • 366 B
JavaScript
export class PvpcError extends Error {
status;
constructor(message, name, status = 500) {
super();
this.status = status;
this.message = message;
this.name = name;
}
static fromResponse(response) {
const { status, message } = response;
return new PvpcError(message, "ApplicationError", status);
}
}