mirror of https://github.com/doccano/doccano.git
pythonmachine-learningannotation-tooldatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labeling
5 lines
111 B
5 lines
111 B
export default class ValidationError extends Error {
|
|
constructor(message: string) {
|
|
super(message)
|
|
}
|
|
}
|