mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-08-05 23:33:49 +08:00
7 lines
125 B
JavaScript
7 lines
125 B
JavaScript
![]() |
class ValidationError {
|
||
|
constructor(message) {
|
||
|
this.message = message;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = ValidationError;
|