mirror of https://github.com/Hypfer/Valetudo.git
13 lines
348 B
JavaScript
13 lines
348 B
JavaScript
const RobotFirmwareError = require("../core/RobotFirmwareError");
|
|
|
|
class MiioErrorResponseRobotFirmwareError extends RobotFirmwareError {
|
|
constructor(msg, response) {
|
|
super(msg);
|
|
|
|
this.name = "MiioErrorResponseRobotFirmwareError";
|
|
this.response = response;
|
|
}
|
|
}
|
|
|
|
module.exports = MiioErrorResponseRobotFirmwareError;
|