Allow versioning and version parameters.

This commit is contained in:
Webber
2020-04-22 22:12:04 +02:00
committed by Webber Takken
parent e8a2eaad72
commit 39a160b789
8 changed files with 38 additions and 6 deletions

View File

@@ -0,0 +1,8 @@
class ValidationError extends Error {
constructor(message) {
super(message);
this.name = 'ValidationError';
}
}
export default ValidationError;