mirror of
https://github.com/strapi/strapi.git
synced 2025-07-18 14:32:56 +00:00
20 lines
314 B
JavaScript
20 lines
314 B
JavaScript
'use strict';
|
|
|
|
class UnknownConnector extends Error {
|
|
constructor(msg) {
|
|
super(msg);
|
|
this.name = 'UnknownConnector';
|
|
}
|
|
}
|
|
class InvalidConnector extends Error {
|
|
constructor(msg) {
|
|
super(msg);
|
|
this.name = 'InvalidConnector';
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
UnknownConnector,
|
|
InvalidConnector,
|
|
};
|