mirror of https://github.com/Hypfer/Valetudo.git
13 lines
336 B
JavaScript
13 lines
336 B
JavaScript
/**
|
|
* A RobotFirmwareError is an error that was sent to us by the robots' firmware.
|
|
* e.g. "segment 17 doesn't exist and therefore cannot be cleaned"
|
|
*/
|
|
class RobotFirmwareError extends Error {
|
|
constructor(message) {
|
|
super(message);
|
|
this.name = "RobotFirmwareError";
|
|
}
|
|
}
|
|
|
|
module.exports = RobotFirmwareError;
|