add github usage & an error type

This commit is contained in:
ForestOfLight
2025-04-20 20:41:39 -07:00
Unverified
parent 2fc881c22a
commit 9a40363c1f
3 changed files with 13 additions and 4 deletions
@@ -0,0 +1,6 @@
export class InstanceNotPlacedError extends Error {
constructor(message) {
super(message);
this.name = 'InstanceNotPlacedError';
}
}