'use strict'; class InteroperableError extends Error { constructor(type, msg, data) { super(msg); this.type = type; this.data = data; } } module.exports = InteroperableError;