props/classes/SchemaError.js
class SchemaError extends Error {
constructor (...args) {
super(...args)
this.name = 'SchemaError'
}
}
export default SchemaError

class SchemaError extends Error {
constructor (...args) {
super(...args)
this.name = 'SchemaError'
}
}
export default SchemaError