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