mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-27 10:02:59 +08:00
10 lines
150 B
TypeScript
10 lines
150 B
TypeScript
class NotFoundError {
|
|
message: string;
|
|
|
|
constructor(message: string) {
|
|
this.message = message;
|
|
}
|
|
}
|
|
|
|
export default NotFoundError;
|