mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-09-12 05:51:34 +08:00
9 lines
149 B
TypeScript
9 lines
149 B
TypeScript
class NotFoundError {
|
|
message: string;
|
|
|
|
constructor(message: string) {
|
|
this.message = message;
|
|
}
|
|
}
|
|
|
|
export default NotFoundError; |