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
/
dist
/
errors
/
invalid-argument.error.js
11 lines
(10 loc)
•
330 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
class
InvalidArgumentError
extends
Error
{
constructor
(
m
) {
super
(m);
// Set the prototype explicitly.
Object
.
setPrototypeOf
(
this
,
InvalidArgumentError
.
prototype
); } }
exports
.
InvalidArgumentError
=
InvalidArgumentError
;