Rename src to source

This commit is contained in:
2026-07-27 10:22:01 +00:00
parent ff0aacc9b4
commit c891351e69
38 changed files with 35 additions and 35 deletions
+10
View File
@@ -0,0 +1,10 @@
/** Authentication failure whose message is safe to return to clients. */
export class UnauthorizedError extends Error {
/**
* @param message - Client-safe unauthorized summary.
*/
constructor(message = 'Unauthorized') {
super(message);
this.name = 'UnauthorizedError';
}
}