mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-08-13 12:32:28 +08:00
10 lines
154 B
TypeScript
10 lines
154 B
TypeScript
class ValidationError {
|
|
message: string;
|
|
|
|
constructor(message: string) {
|
|
this.message = message;
|
|
}
|
|
}
|
|
|
|
export default ValidationError;
|