A note-taking app inspired by nb
at main 6 lines 127 B view raw
1export class UserError extends Error { 2 constructor(message: string) { 3 super(message); 4 this.name = "UserError"; 5 } 6}