Add support for routines; state messages

This commit is contained in:
garrettmills
2020-04-15 09:11:10 -05:00
parent e401809ad5
commit 8319859828
36 changed files with 1146 additions and 22 deletions

View File

@@ -0,0 +1,7 @@
class InvalidRoutineTypeError extends Error {
constructor(routine_type) {
super(`Invalid routine type: ${routine_type}`)
}
}
module.exports = exports = InvalidRoutineTypeError