mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 11:56:00 +00:00
10 lines
138 B
JavaScript
10 lines
138 B
JavaScript
class MissingCredentialsError {
|
|
constructor(detail) {
|
|
this.detail = detail;
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
MissingCredentialsError,
|
|
};
|