mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-08-07 16:42:27 +08:00
9 lines
155 B
TypeScript
9 lines
155 B
TypeScript
class ValidationError {
|
|
message: string;
|
|
|
|
constructor(message: string) {
|
|
this.message = message;
|
|
}
|
|
}
|
|
|
|
module.exports = ValidationError; |