File size: 154 Bytes
6c07b9a
 
 
 
 
 
 
1
2
3
4
5
6
7
8
class MissingAdapterError extends Error {
constructor() {
super();
this.message = 'Missing Adapter';
}
}
module.exports = { MissingAdapterError };