mirror of
https://github.com/TriliumNext/Notes.git
synced 2026-01-11 07:19:49 -06:00
7 lines
125 B
JavaScript
7 lines
125 B
JavaScript
class ValidationError {
|
|
constructor(message) {
|
|
this.message = message;
|
|
}
|
|
}
|
|
|
|
module.exports = ValidationError; |