Sign in
apache
/
pouchdb
/
refs/heads/5443-put-http-checkpoints
/
.
/
packages
/
node_modules
/
sublevel-pouchdb
/
src
/
NotFoundError.js
blob: 89a8eb73df69364cb8767716316598f88c5d35dc [
file
] [
log
] [
blame
]
import
inherits from
'inherits'
;
function
NotFoundError
(
reason
)
{
Error
.
call
(
this
,
reason
);
}
inherits
(
NotFoundError
,
Error
);
NotFoundError
.
prototype
.
name
=
'NotFoundError'
;
export
default
NotFoundError
;