UNPKG
xliff-generator
Version:
beta.1 (1.0.0)
latest (1.0.0-beta.0)
1.0.0-beta.0
A simple module to create xliff files
github.com/markusblasek/node-xliff-generator
xliff-generator
/
src
/
errors
/
csv-parse.error.ts
9 lines
(7 loc)
•
202 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
export
class
CsvParseError
extends
Error
{
constructor
(
m
:
string
) {
super
(m);
// Set the prototype explicitly.
Object
.
setPrototypeOf
(
this
,
CsvParseError
.
prototype
); } }