First commit.

This commit is contained in:
Robin Davies
2021-08-15 12:42:46 -04:00
commit d8a6022947
264 changed files with 95068 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
export class PiPedalError extends Error {
constructor(message: string)
{
super(message);
this.name = "PiPedalError";
}
}
export class PiPedalArgumentError extends PiPedalError {
constructor(message: string)
{
super(message);
this.name = "PiPedalArgumentError";
}
}
export class PiPedalStateError extends PiPedalError {
constructor(message: string)
{
super(message);
this.name = "PiPedalStateError";
}
}
export default PiPedalError;