UNPKG
linguee
Version:
latest (1.0.1)
1.0.1
1.0.0
0.0.1
Bilingual word translation straight from Linguee website
github.com/fesnt/linguee
fesnt/linguee
linguee
/
src
/
errors
/
notFoundException.js
7 lines
(5 loc)
•
165 B
JavaScript
View Raw
1
2
3
4
5
6
7
const
notFoundException =
function
(
query
) {
this
.
type
=
'Not Found'
;
this
.
message
=
`The word "
${query}
" was not found`
; };
module
.
exports
= notFoundException;