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